From: Matthias Maier Date: Wed, 30 Dec 2015 17:33:30 +0000 (+0100) Subject: break indenting to make astyle happy X-Git-Tag: v8.4.0-rc2~117^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2029%2Fhead;p=dealii.git break indenting to make astyle happy --- diff --git a/tests/lac/linear_operator_08a.cc b/tests/lac/linear_operator_08a.cc index ff2b7b43f1..d7ebf64776 100644 --- a/tests/lac/linear_operator_08a.cc +++ b/tests/lac/linear_operator_08a.cc @@ -70,15 +70,15 @@ int main() for (unsigned int j = 0; j < 1000; ++j) { // test Tvmult: - residual = lo_A_inv_t * b; + residual = lo_A_inv_t *b; residual -= answer; if (residual.l2_norm() > 1e-10) - ++n_mistakes; + ++n_mistakes; // test Tvmult_add: - residual = lo_A_inv_t * b - answer; + residual = lo_A_inv_t *b - answer; if (residual.l2_norm() > 1e-10) - ++n_mistakes; + ++n_mistakes; } deallog.depth_file(3);