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 /cppcanvas | |
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 'cppcanvas')
-rw-r--r-- | cppcanvas/inc/pch/precompiled_cppcanvas.hxx | 2 | ||||
-rw-r--r-- | cppcanvas/source/mtfrenderer/bitmapaction.cxx | 2 | ||||
-rw-r--r-- | cppcanvas/source/mtfrenderer/cachedprimitivebase.hxx | 2 | ||||
-rw-r--r-- | cppcanvas/source/mtfrenderer/lineaction.cxx | 2 | ||||
-rw-r--r-- | cppcanvas/source/mtfrenderer/pointaction.cxx | 2 | ||||
-rw-r--r-- | cppcanvas/source/mtfrenderer/polypolyaction.cxx | 2 | ||||
-rw-r--r-- | cppcanvas/source/mtfrenderer/textaction.cxx | 2 | ||||
-rw-r--r-- | cppcanvas/source/mtfrenderer/transparencygroupaction.cxx | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/cppcanvas/inc/pch/precompiled_cppcanvas.hxx b/cppcanvas/inc/pch/precompiled_cppcanvas.hxx index ad6cf5b89cb9..3e1bf4897212 100644 --- a/cppcanvas/inc/pch/precompiled_cppcanvas.hxx +++ b/cppcanvas/inc/pch/precompiled_cppcanvas.hxx @@ -36,7 +36,7 @@ #include <basegfx/vector/b2dvector.hxx> #include <boost/bind.hpp> #include <memory> -#include <boost/utility.hpp> +#include <boost/noncopyable.hpp> #include <canvas/canvastools.hxx> #include <canvas/debug.hxx> #include <canvas/verbosetrace.hxx> diff --git a/cppcanvas/source/mtfrenderer/bitmapaction.cxx b/cppcanvas/source/mtfrenderer/bitmapaction.cxx index fb0eb33ffec9..157a3c4a3cf1 100644 --- a/cppcanvas/source/mtfrenderer/bitmapaction.cxx +++ b/cppcanvas/source/mtfrenderer/bitmapaction.cxx @@ -30,7 +30,7 @@ #include <basegfx/point/b2dpoint.hxx> #include <basegfx/range/b2drange.hxx> #include <basegfx/tools/canvastools.hxx> -#include <boost/utility.hpp> +#include <boost/noncopyable.hpp> #include "cachedprimitivebase.hxx" #include "bitmapaction.hxx" #include "outdevstate.hxx" diff --git a/cppcanvas/source/mtfrenderer/cachedprimitivebase.hxx b/cppcanvas/source/mtfrenderer/cachedprimitivebase.hxx index f6377d5645f0..1c5ac18e9475 100644 --- a/cppcanvas/source/mtfrenderer/cachedprimitivebase.hxx +++ b/cppcanvas/source/mtfrenderer/cachedprimitivebase.hxx @@ -24,7 +24,7 @@ #include <com/sun/star/rendering/XCanvas.hpp> #include <cppcanvas/canvas.hxx> -#include <boost/utility.hpp> +#include <boost/noncopyable.hpp> #include "action.hxx" diff --git a/cppcanvas/source/mtfrenderer/lineaction.cxx b/cppcanvas/source/mtfrenderer/lineaction.cxx index b6d6ca7de2ad..a35eea36e2f5 100644 --- a/cppcanvas/source/mtfrenderer/lineaction.cxx +++ b/cppcanvas/source/mtfrenderer/lineaction.cxx @@ -31,7 +31,7 @@ #include <basegfx/tools/canvastools.hxx> #include <canvas/canvastools.hxx> -#include <boost/utility.hpp> +#include <boost/noncopyable.hpp> #include <cppcanvas/canvas.hxx> diff --git a/cppcanvas/source/mtfrenderer/pointaction.cxx b/cppcanvas/source/mtfrenderer/pointaction.cxx index 228dd73ad52c..b55b72badc89 100644 --- a/cppcanvas/source/mtfrenderer/pointaction.cxx +++ b/cppcanvas/source/mtfrenderer/pointaction.cxx @@ -28,7 +28,7 @@ #include <basegfx/tools/canvastools.hxx> #include <canvas/canvastools.hxx> -#include <boost/utility.hpp> +#include <boost/noncopyable.hpp> #include "pointaction.hxx" #include "outdevstate.hxx" diff --git a/cppcanvas/source/mtfrenderer/polypolyaction.cxx b/cppcanvas/source/mtfrenderer/polypolyaction.cxx index 5aad2993db81..aab931606148 100644 --- a/cppcanvas/source/mtfrenderer/polypolyaction.cxx +++ b/cppcanvas/source/mtfrenderer/polypolyaction.cxx @@ -31,7 +31,7 @@ #include <basegfx/matrix/b2dhommatrix.hxx> #include <canvas/canvastools.hxx> -#include <boost/utility.hpp> +#include <boost/noncopyable.hpp> #include "cachedprimitivebase.hxx" #include "polypolyaction.hxx" diff --git a/cppcanvas/source/mtfrenderer/textaction.cxx b/cppcanvas/source/mtfrenderer/textaction.cxx index 8d09fedc537c..4c97f766e0ad 100644 --- a/cppcanvas/source/mtfrenderer/textaction.cxx +++ b/cppcanvas/source/mtfrenderer/textaction.cxx @@ -44,7 +44,7 @@ #include <memory> #include <boost/bind.hpp> -#include <boost/utility.hpp> +#include <boost/noncopyable.hpp> #include "textaction.hxx" #include "outdevstate.hxx" diff --git a/cppcanvas/source/mtfrenderer/transparencygroupaction.cxx b/cppcanvas/source/mtfrenderer/transparencygroupaction.cxx index cd274b333207..fe5c5a51b478 100644 --- a/cppcanvas/source/mtfrenderer/transparencygroupaction.cxx +++ b/cppcanvas/source/mtfrenderer/transparencygroupaction.cxx @@ -49,7 +49,7 @@ #include <basegfx/tuple/b2dtuple.hxx> #include <basegfx/tools/canvastools.hxx> -#include <boost/utility.hpp> +#include <boost/noncopyable.hpp> #include "transparencygroupaction.hxx" #include "outdevstate.hxx" |