From: Lukas Korous Date: Tue, 15 Sep 2015 16:00:30 +0000 (+0200) Subject: Fix for MSVC: template argument was a preprocessor macro defined in minwindef.h X-Git-Tag: v8.4.0-rc2~414^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=742f5692368f374c8a0ce0349448903c33030843;p=dealii.git Fix for MSVC: template argument was a preprocessor macro defined in minwindef.h --- 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 {