From 742f5692368f374c8a0ce0349448903c33030843 Mon Sep 17 00:00:00 2001 From: Lukas Korous Date: Tue, 15 Sep 2015 18:00:30 +0200 Subject: [PATCH] Fix for MSVC: template argument was a preprocessor macro defined in minwindef.h --- include/deal.II/lac/tridiagonal_matrix.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/deal.II/lac/tridiagonal_matrix.h b/include/deal.II/lac/tridiagonal_matrix.h index 517d65c178..e928d5bc07 100644 --- a/include/deal.II/lac/tridiagonal_matrix.h +++ b/include/deal.II/lac/tridiagonal_matrix.h @@ -241,10 +241,10 @@ public: /** * Output of the matrix in user-defined format. */ - template - void print (OUT &s, - const unsigned int width=5, - const unsigned int precision=2) const; + template + void print(OutputStream &s, + const unsigned int width=5, + const unsigned int precision=2) const; /** * Determine an estimate for the memory consumption (in bytes) of this @@ -369,10 +369,10 @@ TridiagonalMatrix::operator()(size_type i, size_type j) template -template +template void TridiagonalMatrix::print ( - OUT &s, + OutputStream &s, const unsigned int width, const unsigned int) const { -- 2.39.5