diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-01-25 14:09:45 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-25 14:09:45 +0000 |
commit | 5c85b4eacbabf651c3b49f00c30532a86c133510 (patch) | |
tree | 08f499f5b4de5b183421e3f087e3f9819159058a /sc | |
parent | 7185e84b862cf486900a009b4ebfe3e0042fbc3e (diff) |
coverity#1266509 Useless call
Change-Id: Ie2b17f067e5f9a7bacc5e6488e142d0171741106
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/opencl/op_statistical.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/opencl/op_statistical.cxx b/sc/source/core/opencl/op_statistical.cxx index 1f667f5e107d..04dcf60deced 100644 --- a/sc/source/core/opencl/op_statistical.cxx +++ b/sc/source/core/opencl/op_statistical.cxx @@ -4626,7 +4626,7 @@ void OpRsq::GenSlidingWindowFunction( ss << " double fInx;\n"; ss << " double fIny;\n"; ss << " double tmp0,tmp1;\n"; - vSubArguments.size(); + ss <<"\n"; ss << " for(int i=0; i<"<<nCurWindowSize<<"; i++)\n"; |