From b3f6157d32c93bc2add323e6628ad14db899da71 Mon Sep 17 00:00:00 2001 From: Jean-Paul Pelteret Date: Sun, 4 Sep 2016 10:01:23 +0200 Subject: [PATCH] Fix multiline comments in GridIn::read_abaqus() Addresses comment in #3054 --- source/grid/grid_in.cc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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?")); } } -- 2.39.5