From 283a9790bffa6536f4c26bd31d85f815bc64dd08 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 20 Oct 2021 12:48:09 +0200 Subject: loplugin:indentation check for indent inside block look for places where the statements inside a block are not indented Change-Id: I0cbfa7e0b6fb194b2aff6fa7e070fb907d70ca2f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123885 Tested-by: Jenkins Reviewed-by: Noel Grandin --- hwpfilter/source/solver.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'hwpfilter') diff --git a/hwpfilter/source/solver.cxx b/hwpfilter/source/solver.cxx index 07889620f9c2..7e2788f7f626 100644 --- a/hwpfilter/source/solver.cxx +++ b/hwpfilter/source/solver.cxx @@ -119,11 +119,11 @@ bool mgcLinearSystemD::Solve (int n, std::unique_ptr[] { if ( j != icol ) { - save = a[j][icol]; - a[j][icol] = 0; - for (k = 0; k < n; k++) - a[j][k] -= a[icol][k]*save; - b[j] -= b[icol]*save; + save = a[j][icol]; + a[j][icol] = 0; + for (k = 0; k < n; k++) + a[j][k] -= a[icol][k]*save; + b[j] -= b[icol]*save; } } } -- cgit v1.2.3