From: David Wells Date: Sun, 22 Jan 2023 19:22:10 +0000 (-0500) Subject: ReferenceCell: split a string. X-Git-Tag: v9.5.0-rc1~612^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F14709%2Fhead;p=dealii.git ReferenceCell: split a string. --- 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; }