[Libreoffice-commits] core.git: Branch 'feature/calc-group-interpreter-4' - sc/source
I-Jui Sung (Ray)
ray at multicorewareinc.com
Thu Oct 31 20:06:32 CET 2013
sc/source/core/opencl/formulagroupcl.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 93f2bee483b23c426966c5232ca4bd75044b7ada
Author: I-Jui (Ray) Sung <ray at multicorewareinc.com>
Date: Thu Oct 31 13:02:49 2013 -0500
Fixed a typo in the GPU Calc compiler.
Change-Id: I40994de5e445dbd6f3c5e6597a90e63b7dc3cbcf
diff --git a/sc/source/core/opencl/formulagroupcl.cxx b/sc/source/core/opencl/formulagroupcl.cxx
index c44a200..d1ece4c 100644
--- a/sc/source/core/opencl/formulagroupcl.cxx
+++ b/sc/source/core/opencl/formulagroupcl.cxx
@@ -303,9 +303,9 @@ public:
virtual std::string GenSlidingWindowDeclRef(bool) const
{
std::stringstream ss;
- ss << "(!isNan(" << DynamicKernelArgument::GenSlidingWindowDeclRef(ss);
- ss << ")?" << DynamicKernelArgument::GenSlidingWindowDeclRef(ss);
- ss << ":" << mStringArgument.GenSlidingWindowDeclRef(ss);
+ ss << "(!isNan(" << DynamicKernelArgument::GenSlidingWindowDeclRef();
+ ss << ")?" << DynamicKernelArgument::GenSlidingWindowDeclRef();
+ ss << ":" << mStringArgument.GenSlidingWindowDeclRef();
ss << ")";
return ss.str();
}
More information about the Libreoffice-commits
mailing list