From: Daniel Arndt Date: Wed, 12 May 2021 18:28:38 +0000 (-0500) Subject: Fix gmsh_api_02/04 again X-Git-Tag: v9.3.0-rc1~82^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F12196%2Fhead;p=dealii.git Fix gmsh_api_02/04 again --- diff --git a/tests/gmsh/gmsh_api_02.cc b/tests/gmsh/gmsh_api_02.cc index d4326fcd50..a78fcd5385 100644 --- a/tests/gmsh/gmsh_api_02.cc +++ b/tests/gmsh/gmsh_api_02.cc @@ -30,7 +30,7 @@ test(const std::uint8_t kind, const std::string out = "") Triangulation tria; GridGenerator::reference_cell( - internal::ReferenceCell::make_reference_cell_from_int(kind), tria); + tria, internal::ReferenceCell::make_reference_cell_from_int(kind)); GridOut go; go.write_msh(tria, "output.msh"); cat_file("output.msh"); diff --git a/tests/gmsh/gmsh_api_04.cc b/tests/gmsh/gmsh_api_04.cc index 5cf374128f..ba753b3a5d 100644 --- a/tests/gmsh/gmsh_api_04.cc +++ b/tests/gmsh/gmsh_api_04.cc @@ -32,7 +32,7 @@ test(const std::uint8_t kind, const std::string out = "") Triangulation tria; GridGenerator::reference_cell( - internal::ReferenceCell::make_reference_cell_from_int(kind), tria); + tria, internal::ReferenceCell::make_reference_cell_from_int(kind)); GridOut go; go.write_msh(tria, "output.msh");