diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-01-24 11:11:23 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-01-24 11:11:23 +0000 |
commit | a809b5593015488550cf001b185e37b05f5213a9 (patch) | |
tree | 643e3b75108cdc424cd2f341e367318ba1ac5ac0 | |
parent | 365e5c0ee59fae2475373c59c7d276f8211a219b (diff) |
WaE: gcc 4.6.0 various warnings
-rw-r--r-- | basegfx/source/polygon/b2dpolygon.cxx | 2 | ||||
-rw-r--r-- | basegfx/source/range/b2drangeclipper.cxx | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/basegfx/source/polygon/b2dpolygon.cxx b/basegfx/source/polygon/b2dpolygon.cxx index ccd2f3dce6e0..928902090b66 100644 --- a/basegfx/source/polygon/b2dpolygon.cxx +++ b/basegfx/source/polygon/b2dpolygon.cxx @@ -257,6 +257,8 @@ class ControlVectorPair2D basegfx::B2DVector maNextVector; public: + ControlVectorPair2D() {} + const basegfx::B2DVector& getPrevVector() const { return maPrevVector; diff --git a/basegfx/source/range/b2drangeclipper.cxx b/basegfx/source/range/b2drangeclipper.cxx index 87991cb7cd71..2d55fdced3a4 100644 --- a/basegfx/source/range/b2drangeclipper.cxx +++ b/basegfx/source/range/b2drangeclipper.cxx @@ -600,7 +600,6 @@ namespace basegfx std::vector<B2DRange>::const_reverse_iterator aCurrRectR=rRanges.rbegin(); std::vector<B2VectorOrientation>::const_reverse_iterator aCurrOrientationR=rOrientations.rbegin(); const std::vector<B2DRange>::const_reverse_iterator aEndR=rRanges.rend(); - const std::vector<B2VectorOrientation>::const_reverse_iterator aEndOrientationR=rOrientations.rend(); while( aCurrRectR != aEndR ) { const B2DRectangle& rCurrRect( *aCurrRectR++ ); |