From: bangerth Date: Tue, 11 Sep 2012 13:13:13 +0000 (+0000) Subject: Compilers have had std::i/ostringstream for a long time. Remove alternative. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5bdf55935b098a542f52994ae088c088a1d50497;p=dealii-svn.git Compilers have had std::i/ostringstream for a long time. Remove alternative. git-svn-id: https://svn.dealii.org/trunk@26281 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/fe/fe_abf.cc b/deal.II/source/fe/fe_abf.cc index fd1459541d..1d20185a11 100644 --- a/deal.II/source/fe/fe_abf.cc +++ b/deal.II/source/fe/fe_abf.cc @@ -25,12 +25,7 @@ #include #include -#ifdef HAVE_STD_STRINGSTREAM -# include -#else -# include -#endif - +#include #include //TODO: implement the adjust_quad_dof_index_for_face_orientation_table and @@ -118,17 +113,10 @@ FE_ABF::get_name () const // this function returns, so they // have to be kept in synch -#ifdef HAVE_STD_STRINGSTREAM std::ostringstream namebuf; -#else - std::ostrstream namebuf; -#endif namebuf << "FE_ABF<" << dim << ">(" << rt_order << ")"; -#ifndef HAVE_STD_STRINGSTREAM - namebuf << std::ends; -#endif return namebuf.str(); }