summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sc/source/core/tool/interpr5.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/source/core/tool/interpr5.cxx b/sc/source/core/tool/interpr5.cxx
index 4551e80d56ac..b938c1d6b474 100644
--- a/sc/source/core/tool/interpr5.cxx
+++ b/sc/source/core/tool/interpr5.cxx
@@ -43,8 +43,6 @@ using namespace formula;
namespace {
-const double fInvEpsilon = 1.0E-7;
-
struct MatrixAdd : public ::std::binary_function<double,double,double>
{
inline double operator() (const double& lhs, const double& rhs) const
@@ -910,6 +908,7 @@ void ScInterpreter::ScMatInv()
*
* The following is #3.
*/
+ const double fInvEpsilon = 1.0E-7;
ScMatrixRef xR = GetNewMat( nR, nR);
if (xR)
{