From: Jean-Paul Pelteret Date: Sun, 4 Sep 2016 08:01:23 +0000 (+0200) Subject: Fix multiline comments in GridIn::read_abaqus() X-Git-Tag: v8.5.0-rc1~709^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b3f6157d32c93bc2add323e6628ad14db899da71;p=dealii.git Fix multiline comments in GridIn::read_abaqus() Addresses comment in #3054 --- diff --git a/source/grid/grid_in.cc b/source/grid/grid_in.cc index 87a35b7b35..61ac3ae2b8 100644 --- a/source/grid/grid_in.cc +++ b/source/grid/grid_in.cc @@ -874,16 +874,16 @@ void GridIn::read_abaqus (std::istream << exc.what() << std::endl; - AssertThrow(false, ExcMessage("Internal conversion from ABAQUS file to UCD format was unsuccessful. \ - More information is provided in an error message printed above. \ - Are you sure that your ABAQUS mesh file conforms with the requirements \ - listed in the documentation?")); + AssertThrow(false, ExcMessage("Internal conversion from ABAQUS file to UCD format was unsuccessful. " + "More information is provided in an error message printed above. " + "Are you sure that your ABAQUS mesh file conforms with the requirements " + "listed in the documentation?")); } catch (...) { - AssertThrow(false, ExcMessage("Internal conversion from ABAQUS file to UCD format was unsuccessful. \ - Are you sure that your ABAQUS mesh file conforms with the requirements \ - listed in the documentation?")); + AssertThrow(false, ExcMessage("Internal conversion from ABAQUS file to UCD format was unsuccessful. " + "Are you sure that your ABAQUS mesh file conforms with the requirements " + "listed in the documentation?")); } }