From e84f5d2befba7a91a8cb2fb27a9c91a4c8509eb1 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 22 Jan 2020 17:26:21 -0700 Subject: [PATCH] Break a long string onto shorter lines. --- source/lac/sparse_direct.cc | 36 +++++++++++++++++++++++++++--------- 1 file changed, 27 insertions(+), 9 deletions(-) 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 -- 2.39.5