diff --git a/src/mesh.cpp b/src/mesh.cpp index df5c7f2b32..aa35f30645 100644 --- a/src/mesh.cpp +++ b/src/mesh.cpp @@ -262,8 +262,12 @@ void UnstructuredMesh::to_hdf5(hid_t group) const // warn users that some elements were skipped if (num_elem_skipped > 0) { - warning(fmt::format("The connectivity of {} elements on mesh {} were not written " - "because they are not of type linear tet/hex.", num_elem_skipped, this->id_)); + warning(fmt::format( + "The connectivity of {} elements + on mesh {} were not written + " + "because they are not of type linear tet/hex.", + num_elem_skipped, this->id_)); } write_dataset(mesh_group, "volumes", volumes); diff --git a/src/state_point.cpp b/src/state_point.cpp index 11c93447d0..3b217a6582 100644 --- a/src/state_point.cpp +++ b/src/state_point.cpp @@ -820,7 +820,8 @@ void write_unstructured_mesh_results() if (umesh->library() == "moab") { if (mpi::master) - warning(fmt::format("Output for a MOAB mesh (mesh {}) was requested but will not be written. Please use the Python API to generated the desired VTK tetrahedral mesh.", umesh->id_)); + warning(fmt::format("Output for a MOAB mesh (mesh {}) was + requested but will not be written. Please use the Python API to generated the desired VTK tetrahedral mesh.", umesh->id_)); continue; }