From 1085a5baec1a954b54e09479f638cd7d47baca52 Mon Sep 17 00:00:00 2001 From: wolf Date: Tue, 11 Mar 2003 17:45:17 +0000 Subject: [PATCH] Fix missing std:: git-svn-id: https://svn.dealii.org/trunk@7320 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/source/sparse_matrix_ez.double.cc | 2 +- deal.II/lac/source/sparse_matrix_ez.float.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.5