From: Wolfgang Bangerth Date: Fri, 7 Oct 2011 21:15:08 +0000 (+0000) Subject: Make code better readable. X-Git-Tag: v8.0.0~3260 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2480a84c51521b29388dabb9dcbe898011ec4911;p=dealii.git Make code better readable. git-svn-id: https://svn.dealii.org/trunk@24560 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-38/step-38.cc b/deal.II/examples/step-38/step-38.cc index 61a32d7b4b..4c56758d54 100644 --- a/deal.II/examples/step-38/step-38.cc +++ b/deal.II/examples/step-38/step-38.cc @@ -577,7 +577,8 @@ namespace Step38 mapping.get_degree()); std::string filename ("solution-"); - filename += ('0'+spacedim);filename += "d.vtk"; + filename += ('0'+spacedim); + filename += "d.vtk"; std::ofstream output (filename.c_str()); data_out.write_vtk (output); }