summaryrefslogtreecommitdiffstats
path: root/include/basegfx/range
diff options
context:
space:
mode:
Diffstat (limited to 'include/basegfx/range')
-rw-r--r--include/basegfx/range/b2dpolyrange.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/basegfx/range/b2dpolyrange.hxx b/include/basegfx/range/b2dpolyrange.hxx
index f33b35464c48..f3494c177b6d 100644
--- a/include/basegfx/range/b2dpolyrange.hxx
+++ b/include/basegfx/range/b2dpolyrange.hxx
@@ -21,7 +21,7 @@
#define INCLUDED_BASEGFX_RANGE_B2DPOLYRANGE_HXX
#include <o3tl/cow_wrapper.hxx>
-#include <boost/tuple/tuple.hpp>
+#include <tuple>
#include <basegfx/vector/b2enums.hxx>
#include <basegfx/basegfxdllapi.h>
@@ -51,7 +51,7 @@ namespace basegfx
class BASEGFX_DLLPUBLIC B2DPolyRange
{
public:
- typedef boost::tuple<B2DRange,B2VectorOrientation> ElementType ;
+ typedef std::tuple<B2DRange, B2VectorOrientation> ElementType;
B2DPolyRange();
~B2DPolyRange();