Skip to content

Commit 1411568

Browse files
Fix missing close paren
Co-authored-by: Logan Harbour <loganhharbour@gmail.com>
1 parent b3870e7 commit 1411568

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/mesh/exodusII_io.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1154,7 +1154,7 @@ void ExodusII_IO::copy_elemental_solution(System & system,
11541154
for (auto & elem : mesh.active_local_element_ptr_range())
11551155
elem_ids.push_back(elem->id());
11561156

1157-
if (!elem_ids.empty()
1157+
if (!elem_ids.empty())
11581158
elem_ids_to_request[0] = std::move(elem_ids);
11591159
}
11601160

0 commit comments

Comments
 (0)