summaryrefslogtreecommitdiff
path: root/basegfx/source/range/b2dpolyrange.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/source/range/b2dpolyrange.cxx')
-rw-r--r--basegfx/source/range/b2dpolyrange.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/basegfx/source/range/b2dpolyrange.cxx b/basegfx/source/range/b2dpolyrange.cxx
index 3aec84dd6040..95982a63400b 100644
--- a/basegfx/source/range/b2dpolyrange.cxx
+++ b/basegfx/source/range/b2dpolyrange.cxx
@@ -25,7 +25,6 @@
#include <basegfx/polygon/b2dpolypolygon.hxx>
#include <boost/bind.hpp>
-#include <boost/tuple/tuple.hpp>
#include <algorithm>
#include <vector>
@@ -52,8 +51,7 @@ namespace basegfx
B2DPolyRange::ElementType getElement(sal_uInt32 nIndex) const
{
- return boost::make_tuple(maRanges[nIndex],
- maOrient[nIndex]);
+ return std::make_tuple(maRanges[nIndex], maOrient[nIndex]);
}
void appendElement(const B2DRange& rRange, B2VectorOrientation eOrient, sal_uInt32 nCount)