#ifdef HAVE_STD_STRINGSTREAM
# include <sstream>
# define SSTREAM std::ostringstream
+# define ENDSTRING
#else
# include <strstream>
# define SSTREAM std::ostrstream
+# define ENDSTRING << std::ends
#endif
#define PRECISION 2
{
SSTREAM ost;
ost << "Mapping" << dim << "d-" << i << '-'
- << mapping_strings[j];
+ << mapping_strings[j] ENDSTRING;
deallog << ost.str() << std::endl;
plot_transformation(*mapping_ptr[j], fe_q4, cell, ost.str());
compute_area(*mapping_ptr[j], fe_q4, cell);
{
SSTREAM ost;
ost << "MappingFace" << dim << "d-" << i << '-'
- << mapping_strings[j];
+ << mapping_strings[j] ENDSTRING;
deallog << ost.str() << std::endl;
plot_faces(*mapping_ptr[j], fe_q4, cell, ost.str());
}
{
SSTREAM ost;
ost << "MappingSubface" << dim << "d-" << i << '-'
- << mapping_strings[j];
+ << mapping_strings[j] ENDSTRING;
deallog << ost.str() << std::endl;
plot_subfaces(*mapping_ptr[j], fe_q4, cell, ost.str());
}