diff options
author | Daniel Robertson <danlrobertson89@gmail.com> | 2015-08-29 00:15:59 -0400 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2015-08-29 22:51:36 +0000 |
commit | 6900bf41e2b7d7840e11ee1847efd671cf9b0921 (patch) | |
tree | f3e0b62bc7e1c2e5c56eb1e671c4ba882b03c56b /sw | |
parent | 311e77440f11dbe8e49d75b09a4ae0f850ce00c5 (diff) |
o3tl/cow_wrapper: remove boost dependency
Remove boost dependencies from ::o3tl::cow_wrapper, and add
the necessary includes to files including checked_delete and
noncopyable that do not already include the necessary files.
Change-Id: Iedae4232002792724226829a5d5cf9d16ffd0686
Reviewed-on: https://gerrit.libreoffice.org/18125
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Tested-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/inc/fmtmeta.hxx | 1 | ||||
-rw-r--r-- | sw/inc/redline.hxx | 1 | ||||
-rw-r--r-- | sw/source/core/doc/tblafmt.cxx | 1 | ||||
-rw-r--r-- | sw/source/core/inc/MarkManager.hxx | 1 | ||||
-rw-r--r-- | sw/source/core/inc/unometa.hxx | 1 | ||||
-rw-r--r-- | sw/source/filter/xml/xmlimpit.cxx | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/sw/inc/fmtmeta.hxx b/sw/inc/fmtmeta.hxx index f73ec36f3a53..ac4747a7b5ff 100644 --- a/sw/inc/fmtmeta.hxx +++ b/sw/inc/fmtmeta.hxx @@ -25,6 +25,7 @@ #include <svl/poolitem.hxx> #include <sfx2/Metadatable.hxx> +#include <boost/noncopyable.hpp> #include <boost/shared_ptr.hpp> #include <boost/weak_ptr.hpp> diff --git a/sw/inc/redline.hxx b/sw/inc/redline.hxx index 2b8b69c63203..9ed11fcb3371 100644 --- a/sw/inc/redline.hxx +++ b/sw/inc/redline.hxx @@ -27,6 +27,7 @@ #include <IDocumentRedlineAccess.hxx> +#include <boost/noncopyable.hpp> #include <svl/smplhint.hxx> #include <vector> diff --git a/sw/source/core/doc/tblafmt.cxx b/sw/source/core/doc/tblafmt.cxx index 8cc23c510382..f7d3106e2dba 100644 --- a/sw/source/core/doc/tblafmt.cxx +++ b/sw/source/core/doc/tblafmt.cxx @@ -40,6 +40,7 @@ #include <hintids.hxx> #include <fmtornt.hxx> #include <editsh.hxx> +#include <boost/noncopyable.hpp> /* * XXX: BIG RED NOTICE! Changes MUST be binary file format compatible and MUST diff --git a/sw/source/core/inc/MarkManager.hxx b/sw/source/core/inc/MarkManager.hxx index 50186fddaa53..40ad99712a03 100644 --- a/sw/source/core/inc/MarkManager.hxx +++ b/sw/source/core/inc/MarkManager.hxx @@ -24,6 +24,7 @@ #include <IDocumentMarkAccess.hxx> #include <unordered_set> #include <unordered_map> +#include <boost/noncopyable.hpp> namespace sw { namespace mark { diff --git a/sw/source/core/inc/unometa.hxx b/sw/source/core/inc/unometa.hxx index 46523e26484a..26699b3cf175 100644 --- a/sw/source/core/inc/unometa.hxx +++ b/sw/source/core/inc/unometa.hxx @@ -34,6 +34,7 @@ #include <cppuhelper/implbase6.hxx> #include <sfx2/Metadatable.hxx> +#include <boost/noncopyable.hpp> #include <unobaseclass.hxx> diff --git a/sw/source/filter/xml/xmlimpit.cxx b/sw/source/filter/xml/xmlimpit.cxx index 5fd5ac89aa15..50e1d3fd2340 100644 --- a/sw/source/filter/xml/xmlimpit.cxx +++ b/sw/source/filter/xml/xmlimpit.cxx @@ -50,6 +50,7 @@ #include <xmloff/xmlprhdl.hxx> #include "xmlithlp.hxx" #include <com/sun/star/uno/Any.hxx> +#include <boost/noncopyable.hpp> using ::editeng::SvxBorderLine; using namespace ::com::sun::star; |