Fixing bracket.

This commit is contained in:
Patrick Shriwise 2020-03-18 17:33:28 -05:00
parent 5f7b7b32b1
commit 29bfb27d2b

View file

@ -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<RegularMesh>(node));
} else if (mesh_type == "rectilinear") {
model::meshes.push_back(std::make_unique<RectilinearMesh>(node));
#ifdef DAGMC
}
#ifdef DAGMC
else if (mesh_type == "unstructured") {
model::meshes.push_back(std::make_unique<UnstructuredMesh>(node));
#else