diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-10 10:01:46 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-10 11:36:28 +0000 |
commit | 32fdb77fe918f2b409c0f35ef761d871a42ade70 (patch) | |
tree | 64d4e0cf5c9fd2efd82e7c086c4930e59b07daeb | |
parent | 43cefc3b2805021c44c762de0e51dc49300a5d57 (diff) |
coverity#1130174 Logically dead code
Change-Id: I80b4f3db9d5f0eda1a05aa796633aefd434c38f4
-rw-r--r-- | sc/source/core/opencl/formulagroupcl.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sc/source/core/opencl/formulagroupcl.cxx b/sc/source/core/opencl/formulagroupcl.cxx index dab611026f46..d329f5daa8fb 100644 --- a/sc/source/core/opencl/formulagroupcl.cxx +++ b/sc/source/core/opencl/formulagroupcl.cxx @@ -1964,10 +1964,7 @@ public: { if (i) ss << ", "; - if (!nested) - mvSubArguments[i]->GenDeclRef(ss); - else - ss << mvSubArguments[i]->GenSlidingWindowDeclRef(true); + mvSubArguments[i]->GenDeclRef(ss); } ss << ")"; } else { |