diff options
author | Eike Rathke <erack@redhat.com> | 2017-02-24 18:19:35 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-02-24 18:19:45 +0100 |
commit | 9f77a73e2da7da51b318699c477aa071c0b8c324 (patch) | |
tree | f2a89c9ac055cb7bb1ddc52a2267eabd4ba91e0c /sc | |
parent | 7c6902cf8f19fc944c6d9e66cdb27887961301a5 (diff) |
grml.. and do that right
Change-Id: I71bc423bde1f7df576175120741c8a08100b08dd
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/tool/interpr5.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/interpr5.cxx b/sc/source/core/tool/interpr5.cxx index 1fba10b06049..efd1029e0dd5 100644 --- a/sc/source/core/tool/interpr5.cxx +++ b/sc/source/core/tool/interpr5.cxx @@ -759,7 +759,7 @@ static void lcl_LUP_solve( const ScMatrix* mLU, const SCSIZE n, fSum -= mLU->GetDouble( j, i) * X[j]; // X[j] === x[j] X[i] = fSum / mLU->GetDouble( i, i); // X[i] === x[i] } -#if DEBUG_SC_LUP_DECOMPOSITION +#ifdef DEBUG_SC_LUP_DECOMPOSITION fprintf( stderr, "\n%s\n", "lcl_LUP_solve():"); for (SCSIZE i=0; i < n; ++i) fprintf( stderr, "%8.2g ", X[i]); |