From e717b89ae2902f038cd68b582de89042923404e1 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Wed, 30 Dec 2015 18:33:30 +0100 Subject: [PATCH] break indenting to make astyle happy --- tests/lac/linear_operator_08a.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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); -- 2.39.5