From: wolf Date: Tue, 11 Mar 2003 17:45:17 +0000 (+0000) Subject: Fix missing std:: X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1085a5baec1a954b54e09479f638cd7d47baca52;p=dealii-svn.git Fix missing std:: git-svn-id: https://svn.dealii.org/trunk@7320 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/source/sparse_matrix_ez.double.cc b/deal.II/lac/source/sparse_matrix_ez.double.cc index 92530119b4..99d7098f7c 100644 --- a/deal.II/lac/source/sparse_matrix_ez.double.cc +++ b/deal.II/lac/source/sparse_matrix_ez.double.cc @@ -19,7 +19,7 @@ #define TYPEMAT double template class SparseMatrixEZ; -template void SparseMatrixEZ::print_statistics(ostream&, bool); +template void SparseMatrixEZ::print_statistics(std::ostream&, bool); template void SparseMatrixEZ::print_statistics(LogStream&, bool); diff --git a/deal.II/lac/source/sparse_matrix_ez.float.cc b/deal.II/lac/source/sparse_matrix_ez.float.cc index ddb2ddde1c..727164b37b 100644 --- a/deal.II/lac/source/sparse_matrix_ez.float.cc +++ b/deal.II/lac/source/sparse_matrix_ez.float.cc @@ -18,7 +18,7 @@ #define TYPEMAT float template class SparseMatrixEZ; -template void SparseMatrixEZ::print_statistics(ostream&, bool); +template void SparseMatrixEZ::print_statistics(std::ostream&, bool); template void SparseMatrixEZ::print_statistics(LogStream&, bool); #define TYPE2 float