From 3c280c1e171759c04c5fd675d0bec6ff0cc5fd85 Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Fri, 3 May 2019 13:14:15 -0500 Subject: [PATCH] Updating check for unstructured mesh. --- src/mesh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesh.cpp b/src/mesh.cpp index f8608ee9f4..2745f3b5f8 100644 --- a/src/mesh.cpp +++ b/src/mesh.cpp @@ -1538,7 +1538,6 @@ UnstructuredMesh::UnstructuredMesh(pugi::xml_node node) : Mesh(node) { } build_tree(all_tets); - } void @@ -1724,6 +1723,7 @@ UnstructuredMesh::get_ent_handle_from_bin(int bin) const { void read_meshes(pugi::xml_node root) { for (auto node : root.children("mesh")) { + std::string mesh_type; if (check_for_node(node, "type")) { mesh_type = get_node_value(node, "type", true, true);