diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 13:14:21 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 13:14:21 +0100 |
commit | 08138396828aea9961f836c203d9d4a683c98882 (patch) | |
tree | c6bfb4b5ee451bc12cdb0624f2858e7a9e29a242 /include/cppuhelper | |
parent | e2ff5810f1578794aa2617e8d0b44d64642f8eca (diff) |
Missing includes (for NULL)
Change-Id: Id2359f6ff4bddb2afbc0b346e17cd858f00179e3
Diffstat (limited to 'include/cppuhelper')
-rw-r--r-- | include/cppuhelper/factory.hxx | 4 | ||||
-rw-r--r-- | include/cppuhelper/interfacecontainer.h | 1 | ||||
-rw-r--r-- | include/cppuhelper/interfacecontainer.hxx | 4 | ||||
-rw-r--r-- | include/cppuhelper/typeprovider.hxx | 4 | ||||
-rw-r--r-- | include/cppuhelper/weak.hxx | 1 | ||||
-rw-r--r-- | include/cppuhelper/weakref.hxx | 4 |
6 files changed, 18 insertions, 0 deletions
diff --git a/include/cppuhelper/factory.hxx b/include/cppuhelper/factory.hxx index 7f69b76814f2..ee8ac008c31f 100644 --- a/include/cppuhelper/factory.hxx +++ b/include/cppuhelper/factory.hxx @@ -19,6 +19,10 @@ #ifndef INCLUDED_CPPUHELPER_FACTORY_HXX #define INCLUDED_CPPUHELPER_FACTORY_HXX +#include <sal/config.h> + +#include <cstddef> + #include <rtl/ustring.hxx> #include <rtl/unload.h> diff --git a/include/cppuhelper/interfacecontainer.h b/include/cppuhelper/interfacecontainer.h index 245b7188ec88..5aa75ddf3337 100644 --- a/include/cppuhelper/interfacecontainer.h +++ b/include/cppuhelper/interfacecontainer.h @@ -21,6 +21,7 @@ #include <sal/config.h> +#include <cstddef> #include <functional> #include <vector> #include <utility> diff --git a/include/cppuhelper/interfacecontainer.hxx b/include/cppuhelper/interfacecontainer.hxx index 9b858f9b2e54..6b765ba2bccd 100644 --- a/include/cppuhelper/interfacecontainer.hxx +++ b/include/cppuhelper/interfacecontainer.hxx @@ -19,6 +19,10 @@ #ifndef INCLUDED_CPPUHELPER_INTERFACECONTAINER_HXX #define INCLUDED_CPPUHELPER_INTERFACECONTAINER_HXX +#include <sal/config.h> + +#include <cstddef> + #include <cppuhelper/interfacecontainer.h> diff --git a/include/cppuhelper/typeprovider.hxx b/include/cppuhelper/typeprovider.hxx index 9dc9709cbae5..d1ff52dd4a3f 100644 --- a/include/cppuhelper/typeprovider.hxx +++ b/include/cppuhelper/typeprovider.hxx @@ -19,6 +19,10 @@ #ifndef INCLUDED_CPPUHELPER_TYPEPROVIDER_HXX #define INCLUDED_CPPUHELPER_TYPEPROVIDER_HXX +#include <sal/config.h> + +#include <cstddef> + #include <rtl/alloc.h> #include <com/sun/star/uno/Sequence.hxx> #include <cppuhelper/cppuhelperdllapi.h> diff --git a/include/cppuhelper/weak.hxx b/include/cppuhelper/weak.hxx index 5b05edd97907..71958d3a603f 100644 --- a/include/cppuhelper/weak.hxx +++ b/include/cppuhelper/weak.hxx @@ -20,6 +20,7 @@ #define INCLUDED_CPPUHELPER_WEAK_HXX #include <cassert> +#include <cstddef> #include <osl/interlck.h> #include <rtl/alloc.h> #include <com/sun/star/uno/XWeak.hpp> diff --git a/include/cppuhelper/weakref.hxx b/include/cppuhelper/weakref.hxx index c07ec732c888..8494ddd189cb 100644 --- a/include/cppuhelper/weakref.hxx +++ b/include/cppuhelper/weakref.hxx @@ -19,6 +19,10 @@ #ifndef INCLUDED_CPPUHELPER_WEAKREF_HXX #define INCLUDED_CPPUHELPER_WEAKREF_HXX +#include <sal/config.h> + +#include <cstddef> + #include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/uno/XInterface.hpp> #include <cppuhelper/cppuhelperdllapi.h> |