From e428f97f877d6a6ddbdc5c012754da6487fdc5c4 Mon Sep 17 00:00:00 2001 From: David Wells Date: Sun, 22 Jan 2023 14:22:10 -0500 Subject: [PATCH] ReferenceCell: split a string. --- source/grid/reference_cell.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/grid/reference_cell.cc b/source/grid/reference_cell.cc index 8d0987d5a6..2c52fe8953 100644 --- a/source/grid/reference_cell.cc +++ b/source/grid/reference_cell.cc @@ -835,7 +835,8 @@ operator>>(std::istream &in, ReferenceCell &reference_cell) (reference_cell == ReferenceCells::Pyramid) || (reference_cell == ReferenceCells::Invalid), ExcMessage( - "The reference cell kind just read does not correspond to one of the valid choices. There must be an error.")); + "The reference cell kind just read does not correspond to one of the " + "valid choices. There must be an error.")); return in; } -- 2.39.5