From: Wolfgang Bangerth Date: Mon, 29 Jun 2015 14:43:36 +0000 (-0500) Subject: Avoid a C++11ism. X-Git-Tag: v8.3.0-rc1~80^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1056%2Fhead;p=dealii.git Avoid a C++11ism. --- diff --git a/tests/deal.II/error_estimator_02.cc b/tests/deal.II/error_estimator_02.cc index a1ad203e30..81e9cb364f 100644 --- a/tests/deal.II/error_estimator_02.cc +++ b/tests/deal.II/error_estimator_02.cc @@ -241,7 +241,7 @@ void output(const std::string name, std::string("error")); data_out.build_patches (); - std::ofstream output (name); + std::ofstream output (name.c_str()); data_out.write_vtu (output); }