[Libreoffice-commits] core.git: sc/source

I-Jui Sung (Ray) ray at multicorewareinc.com
Thu Oct 31 20:05:09 CET 2013


 sc/source/core/opencl/formulagroupcl.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 0539e7868643200ed929501d4974f4947f97af07
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 2c15ef5..c40c289 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