diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-07-09 18:00:33 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-07-10 23:25:22 +0200 |
commit | 7aa9f045387a95d0b1a516f917fbcd23e0578902 (patch) | |
tree | 4ca3f1d4d9240a7236ac89cd5ab374c149f7c4d8 /basegfx | |
parent | 2302a5ae5625c2ed3a5e7286940d32c7c176d1d2 (diff) |
do not include boost/utility.hpp
It just includes a bunch of other boost headers; mostly we need
boost/noncopyable.hpp so include that directly.
This eliminates 831 MB(!) of boost/preprocessor/seq/fold_left.hpp
completely, which is the 2nd biggest header after ustring.hxx.
Change-Id: I3df55770adcb46e56f389af828e8ba80da2dc1f2
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/inc/pch/precompiled_basegfx.hxx | 2 | ||||
-rw-r--r-- | basegfx/source/range/b2drangeclipper.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/inc/pch/precompiled_basegfx.hxx b/basegfx/inc/pch/precompiled_basegfx.hxx index e289dcfa8464..a65b3ff43fcd 100644 --- a/basegfx/inc/pch/precompiled_basegfx.hxx +++ b/basegfx/inc/pch/precompiled_basegfx.hxx @@ -18,7 +18,7 @@ #include <boost/bind.hpp> #include <boost/scoped_ptr.hpp> #include <boost/tuple/tuple.hpp> -#include <boost/utility.hpp> +#include <boost/noncopyable.hpp> #include <com/sun/star/awt/Point.hpp> #include <com/sun/star/awt/Rectangle.hpp> #include <com/sun/star/awt/Size.hpp> diff --git a/basegfx/source/range/b2drangeclipper.cxx b/basegfx/source/range/b2drangeclipper.cxx index e9a3e5ed3dff..0f58395c5b34 100644 --- a/basegfx/source/range/b2drangeclipper.cxx +++ b/basegfx/source/range/b2drangeclipper.cxx @@ -30,7 +30,7 @@ #include <o3tl/vector_pool.hxx> #include <boost/bind.hpp> -#include <boost/utility.hpp> +#include <boost/next_prior.hpp> #include <algorithm> #include <deque> |