From 579b1405374a3b381bcfd31170ca072d78240f3a Mon Sep 17 00:00:00 2001 From: David Wells Date: Tue, 6 May 2025 17:32:36 -0400 Subject: [PATCH] GridGenerator: wrap a long line. --- source/grid/grid_generator.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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) -- 2.39.5