From: Matthew Russell Date: Mon, 4 Nov 2019 16:19:15 +0000 (+0000) Subject: Fix compilation of gmsh support X-Git-Tag: v9.2.0-rc1~912^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F8998%2Fhead;p=dealii.git Fix compilation of gmsh support Use std::ofstream rather than just ofstream. --- diff --git a/source/gmsh/utilities.cc b/source/gmsh/utilities.cc index d9abd324d4..18ea2ecb8c 100644 --- a/source/gmsh/utilities.cc +++ b/source/gmsh/utilities.cc @@ -76,7 +76,7 @@ namespace Gmsh dealii::OpenCASCADE::write_IGES(boundary, iges_file_name); - ofstream geofile; + std::ofstream geofile; geofile.open(geo_file_name); geofile << "Merge \"" << iges_file_name << "\";" << std::endl << "Line Loop (2) = {1};" << std::endl