From 6a32bfd27452d2f42de1d68f3f34ee12219aadc4 Mon Sep 17 00:00:00 2001 From: David Wells Date: Sat, 13 Apr 2024 17:25:47 -0400 Subject: [PATCH] Split a long line. --- source/grid/tria.cc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/source/grid/tria.cc b/source/grid/tria.cc index 8191fccce2..f4603be4c7 100644 --- a/source/grid/tria.cc +++ b/source/grid/tria.cc @@ -5023,10 +5023,12 @@ namespace internal // and set it appropriately while (triangulation.vertices_used[next_unused_vertex] == true) ++next_unused_vertex; - Assert( - next_unused_vertex < triangulation.vertices.size(), - ExcMessage( - "Internal error: During refinement, the triangulation wants to access an element of the 'vertices' array but it turns out that the array is not large enough.")); + Assert(next_unused_vertex < triangulation.vertices.size(), + ExcMessage( + "Internal error: During refinement, the triangulation " + "wants to access an element of the 'vertices' array " + "but it turns out that the array is not large " + "enough.")); triangulation.vertices_used[next_unused_vertex] = true; triangulation.vertices[next_unused_vertex] = line->center(true); -- 2.39.5