diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-04-14 08:42:15 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-04-25 09:31:31 +0200 |
commit | da64d198ec3b31318c92ad4bcaab18cc2bf5cfdc (patch) | |
tree | 96128ecdbb7c2d6f0065516c0a6a7eb3f454f8e1 /basic | |
parent | 9c807f1c8bf529fbed817990e7091335d3425666 (diff) |
tools: svstream.hxx needs only errcode.hxx & not errinf.hxx
Change-Id: Ia28e35ae5af4f601e9a586a3deffbcd61702b0ca
Reviewed-on: https://gerrit.libreoffice.org/36896
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/basmgr/basmgr.cxx | 1 | ||||
-rw-r--r-- | basic/source/comp/exprtree.cxx | 1 | ||||
-rw-r--r-- | basic/source/comp/symtbl.cxx | 1 | ||||
-rw-r--r-- | basic/source/inc/iosys.hxx | 1 | ||||
-rw-r--r-- | basic/source/runtime/basrdll.cxx | 1 | ||||
-rw-r--r-- | basic/source/sbx/sbxbase.cxx | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/basic/source/basmgr/basmgr.cxx b/basic/source/basmgr/basmgr.cxx index 6aafbc0fa370..dc09a8ba8908 100644 --- a/basic/source/basmgr/basmgr.cxx +++ b/basic/source/basmgr/basmgr.cxx @@ -17,6 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <tools/errinf.hxx> #include <tools/stream.hxx> #include <sot/storage.hxx> #include <tools/urlobj.hxx> diff --git a/basic/source/comp/exprtree.cxx b/basic/source/comp/exprtree.cxx index c3b064da6325..d75b32364e30 100644 --- a/basic/source/comp/exprtree.cxx +++ b/basic/source/comp/exprtree.cxx @@ -18,6 +18,7 @@ */ +#include <memory> #include "parser.hxx" #include <basic/sbx.hxx> #include "expr.hxx" diff --git a/basic/source/comp/symtbl.cxx b/basic/source/comp/symtbl.cxx index 3de2da8b0851..b7017572e86f 100644 --- a/basic/source/comp/symtbl.cxx +++ b/basic/source/comp/symtbl.cxx @@ -18,6 +18,7 @@ */ +#include <memory> #include "parser.hxx" #include <osl/diagnose.h> diff --git a/basic/source/inc/iosys.hxx b/basic/source/inc/iosys.hxx index 9deb4bda4c96..81d9e4e32042 100644 --- a/basic/source/inc/iosys.hxx +++ b/basic/source/inc/iosys.hxx @@ -20,6 +20,7 @@ #ifndef INCLUDED_BASIC_SOURCE_INC_IOSYS_HXX #define INCLUDED_BASIC_SOURCE_INC_IOSYS_HXX +#include <memory> #include <tools/stream.hxx> #include <basic/sberrors.hxx> #include <o3tl/typed_flags_set.hxx> diff --git a/basic/source/runtime/basrdll.cxx b/basic/source/runtime/basrdll.cxx index a9ceda6801ad..f2f2a68961ea 100644 --- a/basic/source/runtime/basrdll.cxx +++ b/basic/source/runtime/basrdll.cxx @@ -17,6 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <memory> #include <vcl/svapp.hxx> #include <svl/solar.hrc> #include <tools/debug.hxx> diff --git a/basic/source/sbx/sbxbase.cxx b/basic/source/sbx/sbxbase.cxx index 1204e9ff7fb5..060b09101152 100644 --- a/basic/source/sbx/sbxbase.cxx +++ b/basic/source/sbx/sbxbase.cxx @@ -17,6 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <memory> #include <o3tl/make_unique.hxx> #include <tools/debug.hxx> #include <tools/stream.hxx> |