diff options
author | I-Jui (Ray) Sung <ray@multicorewareinc.com> | 2013-10-31 13:02:49 -0500 |
---|---|---|
committer | I-Jui (Ray) Sung <ray@multicorewareinc.com> | 2013-10-31 13:49:57 -0500 |
commit | 0539e7868643200ed929501d4974f4947f97af07 (patch) | |
tree | 8994b97e00e4f560eb79417539e0e82d5728e9e4 | |
parent | 9a4a84df5406cdcde1f4d23a1cea2b109998f35b (diff) |
Fixed a typo in the GPU Calc compiler.
Change-Id: I40994de5e445dbd6f3c5e6597a90e63b7dc3cbcf
-rw-r--r-- | sc/source/core/opencl/formulagroupcl.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/core/opencl/formulagroupcl.cxx b/sc/source/core/opencl/formulagroupcl.cxx index 2c15ef5b289d..c40c2894fd39 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(); } |