summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2017-05-07 20:41:22 +0200
committerMichael Stahl <mstahl@redhat.com>2017-05-09 15:41:46 +0200
commit959496794c8af815c571cab1d53b9f904e198754 (patch)
tree30d03c2e62f2ddc5b3878ef93e81d8d05d71f09b /sal
parent3adadbd10501e1baa87a9833ecc84626a625d9a9 (diff)
cleanup osl/diagnose.h includes
with command > git grep -l osl/diagnose.h *.cxx | xargs grep -L -w 'OSL_\w*' | xargs sed -i '/#include *\(<\|\"\)osl\/diagnose.h\(>\|\"\).*/d' headers need more work Change-Id: I906519ebbd47a04703b4fa5943b2f7abea7a97ab Reviewed-on: https://gerrit.libreoffice.org/37350 Tested-by: Jochen Nitschke <j.nitschke+logerrit@ok.de> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sal')
-rw-r--r--sal/osl/unx/interlck.cxx1
-rw-r--r--sal/osl/unx/security.cxx1
-rw-r--r--sal/osl/unx/time.cxx1
-rw-r--r--sal/osl/w32/file_error.cxx1
-rw-r--r--sal/osl/w32/interlck.cxx1
-rw-r--r--sal/osl/w32/process.cxx1
-rw-r--r--sal/osl/w32/signal.cxx1
-rw-r--r--sal/qa/rtl/random/rtl_random.cxx1
-rw-r--r--sal/rtl/alloc_arena.cxx1
-rw-r--r--sal/rtl/alloc_cache.cxx1
-rw-r--r--sal/rtl/uri.cxx1
-rw-r--r--sal/textenc/textenc.cxx1
12 files changed, 0 insertions, 12 deletions
diff --git a/sal/osl/unx/interlck.cxx b/sal/osl/unx/interlck.cxx
index e799805c98fc..bd069e9638dd 100644
--- a/sal/osl/unx/interlck.cxx
+++ b/sal/osl/unx/interlck.cxx
@@ -20,7 +20,6 @@
#include "system.hxx"
#include <osl/interlck.h>
-#include <osl/diagnose.h>
#if ( defined (__sun) || defined ( NETBSD ) ) && defined ( SPARC )
#error please use asm/interlck_sparc.s
diff --git a/sal/osl/unx/security.cxx b/sal/osl/unx/security.cxx
index f14107c1ba23..792ea8166c9c 100644
--- a/sal/osl/unx/security.cxx
+++ b/sal/osl/unx/security.cxx
@@ -31,7 +31,6 @@
#include "system.hxx"
#include <osl/security.h>
-#include <osl/diagnose.h>
#include <rtl/bootstrap.h>
#include <sal/log.hxx>
diff --git a/sal/osl/unx/time.cxx b/sal/osl/unx/time.cxx
index 8fe65f55ea7b..61d452434d64 100644
--- a/sal/osl/unx/time.cxx
+++ b/sal/osl/unx/time.cxx
@@ -22,7 +22,6 @@
#include "saltime.hxx"
#include "system.hxx"
-#include <osl/diagnose.h>
#include <osl/time.h>
#include <time.h>
#include <unistd.h>
diff --git a/sal/osl/w32/file_error.cxx b/sal/osl/w32/file_error.cxx
index dc9425d20bf8..01d4a97d6ee6 100644
--- a/sal/osl/w32/file_error.cxx
+++ b/sal/osl/w32/file_error.cxx
@@ -22,7 +22,6 @@
#include "file_error.hxx"
-#include "osl/diagnose.h"
#include "osl/thread.hxx"
#include <sal/macros.h>
diff --git a/sal/osl/w32/interlck.cxx b/sal/osl/w32/interlck.cxx
index 68c9504763a1..3866062d75c2 100644
--- a/sal/osl/w32/interlck.cxx
+++ b/sal/osl/w32/interlck.cxx
@@ -20,7 +20,6 @@
#include "system.h"
#include <osl/interlck.h>
-#include <osl/diagnose.h>
oslInterlockedCount SAL_CALL osl_incrementInterlockedCount(oslInterlockedCount* pCount)
{
diff --git a/sal/osl/w32/process.cxx b/sal/osl/w32/process.cxx
index 9f76dc40bd1a..6d86ae58bad8 100644
--- a/sal/osl/w32/process.cxx
+++ b/sal/osl/w32/process.cxx
@@ -31,7 +31,6 @@
#include <cassert>
#include <memory>
-#include <osl/diagnose.h>
#include <osl/security.h>
#include <osl/nlsupport.h>
#include <osl/mutex.h>
diff --git a/sal/osl/w32/signal.cxx b/sal/osl/w32/signal.cxx
index dbf3f62a87a2..623cfdca3d90 100644
--- a/sal/osl/w32/signal.cxx
+++ b/sal/osl/w32/signal.cxx
@@ -29,7 +29,6 @@
#include "file_url.hxx"
#include "path_helper.hxx"
-#include <osl/diagnose.h>
#include <osl/signal.h>
#include <DbgHelp.h>
#include <errorrep.h>
diff --git a/sal/qa/rtl/random/rtl_random.cxx b/sal/qa/rtl/random/rtl_random.cxx
index 721af2a97aa1..1193126d8c2d 100644
--- a/sal/qa/rtl/random/rtl_random.cxx
+++ b/sal/qa/rtl/random/rtl_random.cxx
@@ -26,7 +26,6 @@
#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/plugin/TestPlugIn.h>
-#include <osl/diagnose.h>
#include <rtl/random.h>
#include <string.h>
diff --git a/sal/rtl/alloc_arena.cxx b/sal/rtl/alloc_arena.cxx
index f3ac99ea349c..42cd84433ba2 100644
--- a/sal/rtl/alloc_arena.cxx
+++ b/sal/rtl/alloc_arena.cxx
@@ -22,7 +22,6 @@
#include "alloc_impl.hxx"
#include "rtllifecycle.h"
#include "sal/macros.h"
-#include "osl/diagnose.h"
#include <cassert>
#include <string.h>
diff --git a/sal/rtl/alloc_cache.cxx b/sal/rtl/alloc_cache.cxx
index 79c8e76e8ca3..f68d13909686 100644
--- a/sal/rtl/alloc_cache.cxx
+++ b/sal/rtl/alloc_cache.cxx
@@ -22,7 +22,6 @@
#include "alloc_arena.hxx"
#include "rtllifecycle.h"
#include "sal/macros.h"
-#include "osl/diagnose.h"
#include <osl/thread.hxx>
#include <cassert>
diff --git a/sal/rtl/uri.cxx b/sal/rtl/uri.cxx
index 91653f6cdabe..e23d5ac60db7 100644
--- a/sal/rtl/uri.cxx
+++ b/sal/rtl/uri.cxx
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "osl/diagnose.h"
#include "rtl/character.hxx"
#include "rtl/strbuf.hxx"
#include "rtl/textenc.h"
diff --git a/sal/textenc/textenc.cxx b/sal/textenc/textenc.cxx
index afae9c2eb41e..d435c8f317e2 100644
--- a/sal/textenc/textenc.cxx
+++ b/sal/textenc/textenc.cxx
@@ -26,7 +26,6 @@
#include <cstddef>
#include <cstdlib>
-#include "osl/diagnose.h"
#include "osl/module.hxx"
#include "rtl/instance.hxx"
#include "rtl/textenc.h"