From 29bfb27d2be2f8347c5b64d46dd4c6bb81c66792 Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Wed, 18 Mar 2020 17:33:28 -0500 Subject: [PATCH] Fixing bracket. --- src/mesh.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mesh.cpp b/src/mesh.cpp index 66872f5c62..43e381b553 100644 --- a/src/mesh.cpp +++ b/src/mesh.cpp @@ -1842,7 +1842,6 @@ UnstructuredMesh::compute_barycentric_data(const moab::Range& all_tets) { } } -// TODO: write this function void UnstructuredMesh::to_hdf5(hid_t group) const { @@ -2121,8 +2120,8 @@ void read_meshes(pugi::xml_node root) model::meshes.push_back(std::make_unique(node)); } else if (mesh_type == "rectilinear") { model::meshes.push_back(std::make_unique(node)); -#ifdef DAGMC } +#ifdef DAGMC else if (mesh_type == "unstructured") { model::meshes.push_back(std::make_unique(node)); #else