diff options
author | Zsolt Bölöny <bolony.zsolt@gmail.com> | 2015-05-19 17:36:54 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-02 13:20:02 +0000 |
commit | d0f6f00c1af07e744b4302ed9f33ca6c025a1434 (patch) | |
tree | 9e920b857f534818f6dcf138573ac97e2bd80333 /basegfx/source | |
parent | d6e7dcb34322de4701c1cac4e87dc3b681c1dac4 (diff) |
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 'basegfx/source')
-rw-r--r-- | basegfx/source/range/b2dpolyrange.cxx | 4 |
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) |