summaryrefslogtreecommitdiffstats
path: root/include/basegfx/range
diff options
context:
space:
mode:
authorZsolt Bölöny <bolony.zsolt@gmail.com>2015-05-19 17:36:54 +0200
committerCaolán McNamara <caolanm@redhat.com>2015-06-02 13:20:02 +0000
commitd0f6f00c1af07e744b4302ed9f33ca6c025a1434 (patch)
tree9e920b857f534818f6dcf138573ac97e2bd80333 /include/basegfx/range
parentA small hint on how to specify the database URL should be helpful to users (diff)
downloadcore-d0f6f00c1af07e744b4302ed9f33ca6c025a1434.tar.gz
core-d0f6f00c1af07e744b4302ed9f33ca6c025a1434.zip
Replaced boost::tuple with std::tuple
Change-Id: Ia001c8e1e00df85d2be93e330811a1081179785d Reviewed-on: https://gerrit.libreoffice.org/15816 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
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();