diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-07-02 22:35:46 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-07-02 22:35:46 +0200 |
commit | 806a2609e5a1436667a6ad4aa93d14dbdd61c302 (patch) | |
tree | b7e01c98cf74153df4000f216cb96a84342ca6db /basegfx/test/basegfx2d.cxx | |
parent | c8fd385d6100d7b0ef2db3c5f4f1871470c65689 (diff) |
loplugin:casttovoid: basegfx
Change-Id: I5a7723a9b0ce64969a96a3bccb47b380a138b69c
Diffstat (limited to 'basegfx/test/basegfx2d.cxx')
-rw-r--r-- | basegfx/test/basegfx2d.cxx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/basegfx/test/basegfx2d.cxx b/basegfx/test/basegfx2d.cxx index 829040e1442f..f5cc617ddbc2 100644 --- a/basegfx/test/basegfx2d.cxx +++ b/basegfx/test/basegfx2d.cxx @@ -959,10 +959,6 @@ public: Type aRange5(5,6); aRange.intersect(aRange5); CPPUNIT_ASSERT_MESSAGE("range intersection is yielding nonempty range!", aRange.isEmpty()); - - // just so that this compiles - - Type aRange6( aRange ); - (void)aRange6; } void check() @@ -997,10 +993,6 @@ public: CPPUNIT_ASSERT_MESSAGE("(11,11) is inside range!", tools::getCohenSutherlandClipFlags(B2IPoint(11,11),aRange) == (tools::RectClipFlags::RIGHT|tools::RectClipFlags::BOTTOM)); - - // just so that this compiles - - Type aRange1( aRange ); - (void)aRange1; } void check() @@ -1036,10 +1028,6 @@ public: CPPUNIT_ASSERT_EQUAL_MESSAGE("(10,10) is inside range!", tools::RectClipFlags::RIGHT|tools::RectClipFlags::BOTTOM, tools::getCohenSutherlandClipFlags(B2IPoint(10,10),aBox)); - - // just so that this compiles - - B2IBox aBox1( aBox ); - (void)aBox1; } // Change the following lines only, if you add, remove or rename |