From adb1281b842d5bd9c89e0483e25e5922ed08fdef Mon Sep 17 00:00:00 2001 From: Matthew Russell Date: Mon, 4 Nov 2019 16:19:15 +0000 Subject: [PATCH] Fix compilation of gmsh support Use std::ofstream rather than just ofstream. --- source/gmsh/utilities.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5