Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add white space to fix exception message split over several lines. #13708

Merged
merged 1 commit into from
May 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/non_matching/mesh_classifier.cc
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ namespace NonMatching

Assert(fe_collection[i].has_face_support_points(),
ExcMessage(
"The elements in the FECollection of the incoming DoFHandler"
"The elements in the FECollection of the incoming DoFHandler "
"must have face support points."));
}
}
Expand Down
4 changes: 2 additions & 2 deletions source/non_matching/quadrature_generator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1653,8 +1653,8 @@ namespace NonMatching
Assert(
q_generator.get_quadratures().indefinite.size() == 0,
ExcMessage(
"Generation of quadrature rules failed. This can mean that the level"
"set function is degenerate in some way, e.g. oscillating extremely"
"Generation of quadrature rules failed. This can mean that the level "
"set function is degenerate in some way, e.g. oscillating extremely "
"rapidly."));
}

Expand Down