From 705d69a925d5723a5c0b2a62dd41f67f2fe8a217 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 4 Apr 2014 08:53:44 +0200 Subject: Clean up unreferenced functions Change-Id: I5abc0e587cfd81f1f94c604cb58725a2f84ed33d --- basegfx/source/range/b2dpolyrange.cxx | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'basegfx/source/range/b2dpolyrange.cxx') diff --git a/basegfx/source/range/b2dpolyrange.cxx b/basegfx/source/range/b2dpolyrange.cxx index 90a24d876b12..3722ca467bc3 100644 --- a/basegfx/source/range/b2dpolyrange.cxx +++ b/basegfx/source/range/b2dpolyrange.cxx @@ -33,18 +33,6 @@ namespace basegfx { class ImplB2DPolyRange { - void updateBounds() - { - maBounds.reset(); - std::for_each(maRanges.begin(), - maRanges.end(), - boost::bind( - (void (B2DRange::*)(const B2DRange&))( - &B2DRange::expand), - boost::ref(maBounds), - _1)); - } - public: ImplB2DPolyRange() : maBounds(), @@ -52,12 +40,6 @@ namespace basegfx maOrient() {} - explicit ImplB2DPolyRange( const B2DRange& rRange, B2VectorOrientation eOrient ) : - maBounds( rRange ), - maRanges( 1, rRange ), - maOrient( 1, eOrient ) - {} - bool operator==(const ImplB2DPolyRange& rRHS) const { return maRanges == rRHS.maRanges && maOrient == rRHS.maOrient; -- cgit