From: wolf Date: Fri, 25 Jan 2002 12:49:55 +0000 (+0000) Subject: Use over when that is available. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2432d82e5d22b1e56b5cc655544d749a114b61e6;p=dealii-svn.git Use over when that is available. git-svn-id: https://svn.dealii.org/trunk@5416 0785d39b-7218-0410-832d-ea1e28bc413d --- 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