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 /desktop | |
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 'desktop')
-rw-r--r-- | desktop/inc/pch/precompiled_deploymentgui.hxx | 2 | ||||
-rw-r--r-- | desktop/source/deployment/gui/dp_gui_service.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/desktop/inc/pch/precompiled_deploymentgui.hxx b/desktop/inc/pch/precompiled_deploymentgui.hxx index 888858290e6c..b2b593bc3bd6 100644 --- a/desktop/inc/pch/precompiled_deploymentgui.hxx +++ b/desktop/inc/pch/precompiled_deploymentgui.hxx @@ -19,7 +19,7 @@ #include <boost/optional.hpp> #include <boost/scoped_ptr.hpp> #include <boost/shared_ptr.hpp> -#include <boost/utility.hpp> +#include <boost/noncopyable.hpp> #include <com/sun/star/awt/Rectangle.hpp> #include <com/sun/star/awt/Toolkit.hpp> #include <com/sun/star/awt/WindowAttribute.hpp> diff --git a/desktop/source/deployment/gui/dp_gui_service.cxx b/desktop/source/deployment/gui/dp_gui_service.cxx index 3e720b5b3ef8..616b97922368 100644 --- a/desktop/source/deployment/gui/dp_gui_service.cxx +++ b/desktop/source/deployment/gui/dp_gui_service.cxx @@ -36,7 +36,7 @@ #include <com/sun/star/ui/dialogs/XAsynchronousExecutableDialog.hpp> #include <boost/optional.hpp> -#include <boost/utility.hpp> +#include <boost/noncopyable.hpp> #include "license_dialog.hxx" #include "dp_gui_dialog2.hxx" #include "dp_gui_extensioncmdqueue.hxx" |