summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2017-02-24 18:14:44 +0100
committerEike Rathke <erack@redhat.com>2017-02-24 18:15:14 +0100
commit7c6902cf8f19fc944c6d9e66cdb27887961301a5 (patch)
tree3c0cfa538abc6faf06ec623bf7d0882f0946f5fd /sc
parent4b8cb3e3b9c597108697f46bcc93045b06cc0633 (diff)
replace a leftover OSL_DEBUG_LEVEL >1
Change-Id: Ic5e5e72a2c79e68752c3108de9f3722fbcb8e7b3
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/tool/interpr5.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/interpr5.cxx b/sc/source/core/tool/interpr5.cxx
index fe3b6e402a32..1fba10b06049 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 OSL_DEBUG_LEVEL >1
+#if 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]);