diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-07-02 22:30:54 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-07-02 22:30:54 +0200 |
commit | cc7fd44822441c676864a8774994ce7093a4f197 (patch) | |
tree | f91a85e8a1f277ffc7b2af2edfae4b600cf5e139 /sc/qa/unit | |
parent | f6abc3f97e74df0c4ae05abf4075085a9b9c1cc4 (diff) |
loplugin:casttovoid: sc
Change-Id: I1dddf4431ccbcea8a5d89d2849307efba592cae9
Diffstat (limited to 'sc/qa/unit')
-rw-r--r-- | sc/qa/unit/opencl-test.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sc/qa/unit/opencl-test.cxx b/sc/qa/unit/opencl-test.cxx index 8ce1ca18577d..b5138a5ff068 100644 --- a/sc/qa/unit/opencl-test.cxx +++ b/sc/qa/unit/opencl-test.cxx @@ -920,11 +920,9 @@ void ScOpenCLTest::testMathFormulaRandom() for (SCROW i = 0; i <= 15; ++i) { - double fLibre = rDoc.GetValue(ScAddress(0,i,0)); - double fExcel = rDocRes.GetValue(ScAddress(0,i,0)); + rDoc.GetValue(ScAddress(0,i,0)); // LO + rDocRes.GetValue(ScAddress(0,i,0)); // Excel //because the random numbers will always change,so give the test "true" - (void) fLibre; - (void) fExcel; CPPUNIT_ASSERT(true); } } |