summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sc/source/core/opencl/op_math.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/opencl/op_math.cxx b/sc/source/core/opencl/op_math.cxx
index 60f9438811ae..557a92683a17 100644
--- a/sc/source/core/opencl/op_math.cxx
+++ b/sc/source/core/opencl/op_math.cxx
@@ -1851,7 +1851,7 @@ void OpRadians::GenSlidingWindowFunction(std::stringstream &ss,
ss << " double tmp;\n";
GenTmpVariables(ss,vSubArguments);
CheckAllSubArgumentIsNan(ss,vSubArguments);
- ss << " tmp = tmp0 * 3.141592657 * pow(180.0,-1);\n";
+ ss << " tmp = tmp0 * 3.14159265358979 * pow(180.0,-1);\n";
ss << " return tmp;\n";
ss << "}";
}