diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-06 14:22:55 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-06 13:03:06 +0000 |
commit | 6768a9b602c5cd6b4702faf862cac60527bded99 (patch) | |
tree | fa7048ac03cd0c9bd00949e2ce236980ccaf3efd /starmath | |
parent | ad16351d9d8fd440bb8941c453b802ad5c109b23 (diff) |
loplugin:redundantcast check for c-style casts to void
Change-Id: Ic8b99f590436f94825e471bc61411c69fd768862
Reviewed-on: https://gerrit.libreoffice.org/36208
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/qa/cppunit/test_node.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/starmath/qa/cppunit/test_node.cxx b/starmath/qa/cppunit/test_node.cxx index 3a450b5329f5..e36b8100f682 100644 --- a/starmath/qa/cppunit/test_node.cxx +++ b/starmath/qa/cppunit/test_node.cxx @@ -71,10 +71,10 @@ void NodeTest::testTdf47813() #undef MATRIX ScopedVclPtrInstance<VirtualDevice> pOutputDevice; SmFormat aFmt; - (void)pNodeA->Arrange(*pOutputDevice, aFmt); - (void)pNodeC->Arrange(*pOutputDevice, aFmt); - (void)pNodeL->Arrange(*pOutputDevice, aFmt); - (void)pNodeR->Arrange(*pOutputDevice, aFmt); + pNodeA->Arrange(*pOutputDevice, aFmt); + pNodeC->Arrange(*pOutputDevice, aFmt); + pNodeL->Arrange(*pOutputDevice, aFmt); + pNodeR->Arrange(*pOutputDevice, aFmt); long nWidthA = pNodeA->GetRect().GetWidth(); long nWidthC = pNodeC->GetRect().GetWidth(); long nWidthL = pNodeL->GetRect().GetWidth(); |