From 77382b0692f7d6dc7c111ef72596fe75e7b2f511 Mon Sep 17 00:00:00 2001 From: David Wells Date: Sat, 6 Apr 2024 10:37:37 -0400 Subject: [PATCH] Split a very long string. --- source/grid/tria.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/grid/tria.cc b/source/grid/tria.cc index 0eaaa200a2..5d37de13fa 100644 --- a/source/grid/tria.cc +++ b/source/grid/tria.cc @@ -5142,7 +5142,9 @@ namespace internal 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.")); + "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; new_vertices[8] = next_unused_vertex; -- 2.39.5