From d3beb0ff883e8a2f0fb9593d90bf2e0266d9c075 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 29 Jun 2015 09:43:36 -0500 Subject: [PATCH] Avoid a C++11ism. --- tests/deal.II/error_estimator_02.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.5