diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-11-17 22:45:11 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-11-18 18:51:48 +0100 |
commit | 721366ebe1605f6167cc46a05fba12ce884b92cf (patch) | |
tree | 49acfc5ec3ebce6e012d909fbc5ce879e3aeb91c /io | |
parent | 537befbb2fd5f1587f7c9cd8c55498d29b713770 (diff) |
cppu: clean up public headers with include-what-you-use
Unfortunately iwyu gets quite confused by the weird cyclic dependencies
between various foo.h/foo.hxx and cppumaker generated headers, so it's
not obvious if any improvement here is realistic...
Change-Id: I0bc66f98b146712e28cabc18d56c11c08418c721
Diffstat (limited to 'io')
-rw-r--r-- | io/source/acceptor/acc_pipe.cxx | 1 | ||||
-rw-r--r-- | io/source/acceptor/acc_socket.cxx | 1 | ||||
-rw-r--r-- | io/source/acceptor/acceptor.hxx | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/io/source/acceptor/acc_pipe.cxx b/io/source/acceptor/acc_pipe.cxx index abab10b6851b..34d9bf65d15e 100644 --- a/io/source/acceptor/acc_pipe.cxx +++ b/io/source/acceptor/acc_pipe.cxx @@ -22,6 +22,7 @@ #include <com/sun/star/connection/ConnectionSetupException.hpp> #include <osl/diagnose.h> +#include <osl/mutex.hxx> #include <cppuhelper/implbase1.hxx> using namespace ::osl; diff --git a/io/source/acceptor/acc_socket.cxx b/io/source/acceptor/acc_socket.cxx index 4ad86a597950..d98e79c3b076 100644 --- a/io/source/acceptor/acc_socket.cxx +++ b/io/source/acceptor/acc_socket.cxx @@ -22,6 +22,7 @@ #include <boost/unordered_set.hpp> #include <algorithm> +#include <osl/mutex.hxx> #include <rtl/ustrbuf.hxx> #include <com/sun/star/connection/XConnectionBroadcaster.hpp> #include <com/sun/star/connection/ConnectionSetupException.hpp> diff --git a/io/source/acceptor/acceptor.hxx b/io/source/acceptor/acceptor.hxx index 53db4df449f6..8b8c74931c02 100644 --- a/io/source/acceptor/acceptor.hxx +++ b/io/source/acceptor/acceptor.hxx @@ -22,6 +22,7 @@ #include <osl/pipe.hxx> #include <osl/socket.hxx> +#include <osl/mutex.hxx> #include <com/sun/star/connection/XConnection.hpp> |