From: Wolfgang Bangerth Date: Fri, 30 Nov 2001 12:51:23 +0000 (+0000) Subject: Fix typo. X-Git-Tag: v8.0.0~18518 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07066dd308edf9a2ebe4453cd8dd4f7ecd74760a;p=dealii.git Fix typo. git-svn-id: https://svn.dealii.org/trunk@5317 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/config.h.in b/deal.II/base/include/base/config.h.in index 3444172371..fbbe516c13 100644 --- a/deal.II/base/include/base/config.h.in +++ b/deal.II/base/include/base/config.h.in @@ -54,7 +54,7 @@ #undef HAVE_STD_ITERATOR_CLASS /* Define if the compiler's library in use provides - std::i/ostringstream classese (early gcc versions did not) */ + std::i/ostringstream classes (early gcc versions did not) */ #undef HAVE_STD_STRINGSTREAM /* Define if you have the rand_r function */ diff --git a/deal.II/examples/step-5/step-5.cc b/deal.II/examples/step-5/step-5.cc index 830ae64305..b0376e0321 100644 --- a/deal.II/examples/step-5/step-5.cc +++ b/deal.II/examples/step-5/step-5.cc @@ -817,7 +817,7 @@ void LaplaceProblem::output_results (const unsigned int cycle) const // way as done above in deciding // which file to include, we here // decide which class name to use: -#ifdef HAVE_STD_STRINSTREAM +#ifdef HAVE_STD_STRINGSTREAM std::ostringstream filename; #else std::ostrstream filename;