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 /include/basegfx/range | |
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 'include/basegfx/range')
-rw-r--r-- | include/basegfx/range/b2dpolyrange.hxx | 4 |
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(); |