diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-11-14 22:52:35 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-11-17 11:06:53 +0100 |
commit | 6a0fe37dec107392fbe468a35b89071b9a93d2c1 (patch) | |
tree | 4334feae68fa1ddc1ef293cd46ef483f44081c1c /sal | |
parent | 30f3b36e07ce37a3fe1909fb4b1419a00d2fdd81 (diff) |
sal: clean up public headers with include-what-you-use
Sadly cannot forward declare "struct {...} TimeValue;".
rtl/(u)?string.hxx still include sal/log.hxx but removing osl/diagnose.h
was painful enough for now...
Change-Id: Id41e17f3870c4f24c53ce7b11f2c40a3d14d1f05
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/unx/file_stat.cxx | 2 | ||||
-rw-r--r-- | sal/qa/rtl/textenc/rtl_textcvt.cxx | 1 | ||||
-rw-r--r-- | sal/rtl/ustrbuf.cxx | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/sal/osl/unx/file_stat.cxx b/sal/osl/unx/file_stat.cxx index ce6c5d9d6d1c..e35a50dfbec5 100644 --- a/sal/osl/unx/file_stat.cxx +++ b/sal/osl/unx/file_stat.cxx @@ -26,6 +26,8 @@ #include <limits.h> #include <unistd.h> +#include <osl/diagnose.h> + #include "file_impl.hxx" #include "file_error_transl.h" #include "file_path_helper.hxx" diff --git a/sal/qa/rtl/textenc/rtl_textcvt.cxx b/sal/qa/rtl/textenc/rtl_textcvt.cxx index b6b7001c2524..93847d5513c9 100644 --- a/sal/qa/rtl/textenc/rtl_textcvt.cxx +++ b/sal/qa/rtl/textenc/rtl_textcvt.cxx @@ -36,6 +36,7 @@ #include "rtl/textenc.h" #include "sal/types.h" #include <sal/macros.h> +#include <osl/diagnose.h> namespace { diff --git a/sal/rtl/ustrbuf.cxx b/sal/rtl/ustrbuf.cxx index 30f4efe39c7f..759d05ccba0c 100644 --- a/sal/rtl/ustrbuf.cxx +++ b/sal/rtl/ustrbuf.cxx @@ -20,6 +20,7 @@ #include <string.h> #include <osl/interlck.h> +#include <osl/diagnose.h> #include <rtl/ustrbuf.hxx> #include <strimp.hxx> |