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 /sw/inc | |
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 'sw/inc')
-rw-r--r-- | sw/inc/ndarr.hxx | 2 | ||||
-rw-r--r-- | sw/inc/shellio.hxx | 2 | ||||
-rw-r--r-- | sw/inc/txatbase.hxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/ndarr.hxx b/sw/inc/ndarr.hxx index 4ff30a8749be..ad085346cade 100644 --- a/sw/inc/ndarr.hxx +++ b/sw/inc/ndarr.hxx @@ -23,7 +23,7 @@ #include <vector> #include <memory> -#include <boost/utility.hpp> +#include <boost/noncopyable.hpp> #include <com/sun/star/embed/XEmbeddedObject.hpp> diff --git a/sw/inc/shellio.hxx b/sw/inc/shellio.hxx index d267b95a6698..0e1eb957723f 100644 --- a/sw/inc/shellio.hxx +++ b/sw/inc/shellio.hxx @@ -20,7 +20,7 @@ #define INCLUDED_SW_INC_SHELLIO_HXX #include <memory> -#include <boost/utility.hpp> +#include <boost/noncopyable.hpp> #include <com/sun/star/uno/Reference.h> #include <com/sun/star/embed/XStorage.hpp> diff --git a/sw/inc/txatbase.hxx b/sw/inc/txatbase.hxx index f1f70b431555..390ad58b7260 100644 --- a/sw/inc/txatbase.hxx +++ b/sw/inc/txatbase.hxx @@ -33,7 +33,7 @@ #include <fchrfmt.hxx> #include <tox.hxx> -#include <boost/utility.hpp> +#include <boost/noncopyable.hpp> class SfxItemPool; class SvXMLAttrContainerItem; |