From: David Wells Date: Tue, 6 May 2025 21:32:36 +0000 (-0400) Subject: GridGenerator: wrap a long line. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=579b1405374a3b381bcfd31170ca072d78240f3a;p=dealii.git GridGenerator: wrap a long line. --- diff --git a/source/grid/grid_generator.cc b/source/grid/grid_generator.cc index 7864fc1ca0..44be1c3b82 100644 --- a/source/grid/grid_generator.cc +++ b/source/grid/grid_generator.cc @@ -7994,10 +7994,10 @@ namespace GridGenerator Triangulation &out_tria) { Assert(dim > 1, ExcNotImplemented()); - AssertThrow( - in_tria.all_reference_cells_are_hyper_cube(), - ExcMessage( - "GridGenerator::convert_hypercube_to_simplex_mesh() expects a mesh that consists only of quads/hexes.")); + AssertThrow(in_tria.all_reference_cells_are_hyper_cube(), + ExcMessage( + "GridGenerator::convert_hypercube_to_simplex_mesh() expects " + "a Triangulation that consists only of quads/hexes.")); Triangulation temp_tria; if (in_tria.n_global_levels() > 1)