From: Wolfgang Bangerth Date: Thu, 23 Jan 2020 00:26:21 +0000 (-0700) Subject: Break a long string onto shorter lines. X-Git-Tag: v9.2.0-rc1~612^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e84f5d2befba7a91a8cb2fb27a9c91a4c8509eb1;p=dealii.git Break a long string onto shorter lines. --- diff --git a/source/lac/sparse_direct.cc b/source/lac/sparse_direct.cc index b158a65616..2a0205db8a 100644 --- a/source/lac/sparse_direct.cc +++ b/source/lac/sparse_direct.cc @@ -585,7 +585,9 @@ SparseDirectUMFPACK::factorize(const Matrix &) AssertThrow( false, ExcMessage( - "To call this function you need UMFPACK, but you configured deal.II without passing the necessary switch to 'cmake'. Please consult the installation instructions in doc/readme.html.")); + "To call this function you need UMFPACK, but you configured deal.II " + "without passing the necessary switch to 'cmake'. Please consult the " + "installation instructions in doc/readme.html.")); } @@ -595,7 +597,9 @@ SparseDirectUMFPACK::solve(Vector &, const bool) const AssertThrow( false, ExcMessage( - "To call this function you need UMFPACK, but you configured deal.II without passing the necessary switch to 'cmake'. Please consult the installation instructions in doc/readme.html.")); + "To call this function you need UMFPACK, but you configured deal.II " + "without passing the necessary switch to 'cmake'. Please consult the " + "installation instructions in doc/readme.html.")); } @@ -606,7 +610,9 @@ SparseDirectUMFPACK::solve(Vector> &, const bool) const AssertThrow( false, ExcMessage( - "To call this function you need UMFPACK, but you configured deal.II without passing the necessary switch to 'cmake'. Please consult the installation instructions in doc/readme.html.")); + "To call this function you need UMFPACK, but you configured deal.II " + "without passing the necessary switch to 'cmake'. Please consult the " + "installation instructions in doc/readme.html.")); } @@ -617,7 +623,9 @@ SparseDirectUMFPACK::solve(BlockVector &, const bool) const AssertThrow( false, ExcMessage( - "To call this function you need UMFPACK, but you configured deal.II without passing the necessary switch to 'cmake'. Please consult the installation instructions in doc/readme.html.")); + "To call this function you need UMFPACK, but you configured deal.II " + "without passing the necessary switch to 'cmake'. Please consult the " + "installation instructions in doc/readme.html.")); } @@ -629,7 +637,9 @@ SparseDirectUMFPACK::solve(BlockVector> &, AssertThrow( false, ExcMessage( - "To call this function you need UMFPACK, but you configured deal.II without passing the necessary switch to 'cmake'. Please consult the installation instructions in doc/readme.html.")); + "To call this function you need UMFPACK, but you configured deal.II " + "without passing the necessary switch to 'cmake'. Please consult the " + "installation instructions in doc/readme.html.")); } @@ -641,7 +651,9 @@ SparseDirectUMFPACK::solve(const Matrix &, Vector &, const bool) AssertThrow( false, ExcMessage( - "To call this function you need UMFPACK, but you configured deal.II without passing the necessary switch to 'cmake'. Please consult the installation instructions in doc/readme.html.")); + "To call this function you need UMFPACK, but you configured deal.II " + "without passing the necessary switch to 'cmake'. Please consult the " + "installation instructions in doc/readme.html.")); } @@ -655,7 +667,9 @@ SparseDirectUMFPACK::solve(const Matrix &, AssertThrow( false, ExcMessage( - "To call this function you need UMFPACK, but you configured deal.II without passing the necessary switch to 'cmake'. Please consult the installation instructions in doc/readme.html.")); + "To call this function you need UMFPACK, but you configured deal.II " + "without passing the necessary switch to 'cmake'. Please consult the " + "installation instructions in doc/readme.html.")); } @@ -667,7 +681,9 @@ SparseDirectUMFPACK::solve(const Matrix &, BlockVector &, const bool) AssertThrow( false, ExcMessage( - "To call this function you need UMFPACK, but you configured deal.II without passing the necessary switch to 'cmake'. Please consult the installation instructions in doc/readme.html.")); + "To call this function you need UMFPACK, but you configured deal.II " + "without passing the necessary switch to 'cmake'. Please consult the " + "installation instructions in doc/readme.html.")); } @@ -681,7 +697,9 @@ SparseDirectUMFPACK::solve(const Matrix &, AssertThrow( false, ExcMessage( - "To call this function you need UMFPACK, but you configured deal.II without passing the necessary switch to 'cmake'. Please consult the installation instructions in doc/readme.html.")); + "To call this function you need UMFPACK, but you configured deal.II " + "without passing the necessary switch to 'cmake'. Please consult the " + "installation instructions in doc/readme.html.")); } #endif