From 17f99f8e7218fb22e860b20b63047b414b94c27b Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 25 Jan 2002 12:49:55 +0000 Subject: [PATCH] Use over when that is available. git-svn-id: https://svn.dealii.org/trunk@5416 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/sparse_matrix.templates.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/deal.II/lac/include/lac/sparse_matrix.templates.h b/deal.II/lac/include/lac/sparse_matrix.templates.h index df30bcc713..58830f53d7 100644 --- a/deal.II/lac/include/lac/sparse_matrix.templates.h +++ b/deal.II/lac/include/lac/sparse_matrix.templates.h @@ -18,7 +18,14 @@ #include -#include +// we only need output streams, but older compilers did not provide +// them in a separate include file +#ifdef HAVE_STD_OSTREAM_HEADER +# include +#else +# include +#endif + #include #include #include -- 2.39.5