summaryrefslogtreecommitdiff
path: root/sal/rtl
diff options
context:
space:
mode:
Diffstat (limited to 'sal/rtl')
-rw-r--r--sal/rtl/alloc_arena.cxx4
-rw-r--r--sal/rtl/alloc_arena.hxx4
-rw-r--r--sal/rtl/alloc_cache.cxx4
-rw-r--r--sal/rtl/alloc_cache.hxx4
-rw-r--r--sal/rtl/alloc_fini.cxx2
-rw-r--r--sal/rtl/alloc_global.cxx4
-rw-r--r--sal/rtl/alloc_impl.hxx2
-rw-r--r--sal/rtl/bootstrap.cxx4
-rw-r--r--sal/rtl/locale.cxx8
-rw-r--r--sal/rtl/math.cxx24
-rw-r--r--sal/rtl/random.cxx2
-rw-r--r--sal/rtl/rtl_process.cxx10
-rw-r--r--sal/rtl/strimp.hxx2
-rw-r--r--sal/rtl/string.cxx4
-rw-r--r--sal/rtl/unload.cxx6
-rw-r--r--sal/rtl/uri.cxx22
-rw-r--r--sal/rtl/ustrbuf.cxx2
-rw-r--r--sal/rtl/ustring.cxx4
18 files changed, 56 insertions, 56 deletions
diff --git a/sal/rtl/alloc_arena.cxx b/sal/rtl/alloc_arena.cxx
index 90be828c0d32..bdb7dcf24de8 100644
--- a/sal/rtl/alloc_arena.cxx
+++ b/sal/rtl/alloc_arena.cxx
@@ -20,8 +20,8 @@
#include "alloc_arena.hxx"
#include "alloc_impl.hxx"
-#include "rtllifecycle.h"
-#include "sal/macros.h"
+#include <rtllifecycle.h>
+#include <sal/macros.h>
#include <cassert>
#include <string.h>
diff --git a/sal/rtl/alloc_arena.hxx b/sal/rtl/alloc_arena.hxx
index da2ebeacc683..6a846876ff17 100644
--- a/sal/rtl/alloc_arena.hxx
+++ b/sal/rtl/alloc_arena.hxx
@@ -20,8 +20,8 @@
#ifndef INCLUDED_SAL_RTL_ALLOC_ARENA_HXX
#define INCLUDED_SAL_RTL_ALLOC_ARENA_HXX
-#include "sal/types.h"
-#include "rtl/alloc.h"
+#include <sal/types.h>
+#include <rtl/alloc.h>
#include "alloc_impl.hxx"
/** rtl_arena_stat_type
diff --git a/sal/rtl/alloc_cache.cxx b/sal/rtl/alloc_cache.cxx
index 18785795a2ad..091a5bf774ee 100644
--- a/sal/rtl/alloc_cache.cxx
+++ b/sal/rtl/alloc_cache.cxx
@@ -20,8 +20,8 @@
#include "alloc_cache.hxx"
#include "alloc_impl.hxx"
#include "alloc_arena.hxx"
-#include "rtllifecycle.h"
-#include "sal/macros.h"
+#include <rtllifecycle.h>
+#include <sal/macros.h>
#include <osl/thread.hxx>
#include <cassert>
diff --git a/sal/rtl/alloc_cache.hxx b/sal/rtl/alloc_cache.hxx
index a7c1c497e7c0..3e467ade3cd2 100644
--- a/sal/rtl/alloc_cache.hxx
+++ b/sal/rtl/alloc_cache.hxx
@@ -20,8 +20,8 @@
#ifndef INCLUDED_SAL_RTL_ALLOC_CACHE_HXX
#define INCLUDED_SAL_RTL_ALLOC_CACHE_HXX
-#include "sal/types.h"
-#include "rtl/alloc.h"
+#include <sal/types.h>
+#include <rtl/alloc.h>
#include "alloc_impl.hxx"
/**
diff --git a/sal/rtl/alloc_fini.cxx b/sal/rtl/alloc_fini.cxx
index dd0cb6a52c94..1d70d5c0c788 100644
--- a/sal/rtl/alloc_fini.cxx
+++ b/sal/rtl/alloc_fini.cxx
@@ -19,7 +19,7 @@
#include <rtl/instance.hxx>
-#include "rtllifecycle.h"
+#include <rtllifecycle.h>
namespace
{
diff --git a/sal/rtl/alloc_global.cxx b/sal/rtl/alloc_global.cxx
index b0d3adbf928a..3d74287bc7e5 100644
--- a/sal/rtl/alloc_global.cxx
+++ b/sal/rtl/alloc_global.cxx
@@ -18,7 +18,7 @@
*/
#include "alloc_impl.hxx"
-#include "rtl/alloc.h"
+#include <rtl/alloc.h>
#include <sal/log.hxx>
#include <sal/macros.h>
@@ -26,7 +26,7 @@
#include <string.h>
#include <stdio.h>
-#include "rtllifecycle.h"
+#include <rtllifecycle.h>
#include <oslmemory.h>
AllocMode alloc_mode = AllocMode::UNSET;
diff --git a/sal/rtl/alloc_impl.hxx b/sal/rtl/alloc_impl.hxx
index bac110f2cac2..852db3767e2c 100644
--- a/sal/rtl/alloc_impl.hxx
+++ b/sal/rtl/alloc_impl.hxx
@@ -20,7 +20,7 @@
#ifndef INCLUDED_SAL_RTL_ALLOC_IMPL_HXX
#define INCLUDED_SAL_RTL_ALLOC_IMPL_HXX
-#include "sal/types.h"
+#include <sal/types.h>
/** Alignment macros
*/
diff --git a/sal/rtl/bootstrap.cxx b/sal/rtl/bootstrap.cxx
index 8ca0f2ea64f7..5cb251f9bba4 100644
--- a/sal/rtl/bootstrap.cxx
+++ b/sal/rtl/bootstrap.cxx
@@ -19,8 +19,8 @@
#include <config_features.h>
#include <config_folders.h>
-#include "rtl/bootstrap.h"
-#include "rtl/bootstrap.hxx"
+#include <rtl/bootstrap.h>
+#include <rtl/bootstrap.hxx>
#include <osl/diagnose.h>
#include <osl/module.h>
#include <osl/process.h>
diff --git a/sal/rtl/locale.cxx b/sal/rtl/locale.cxx
index f610584b1b78..e7ef4223b0ca 100644
--- a/sal/rtl/locale.cxx
+++ b/sal/rtl/locale.cxx
@@ -17,12 +17,12 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "rtl/locale.h"
+#include <rtl/locale.h>
-#include "osl/diagnose.h"
-#include "rtl/alloc.h"
+#include <osl/diagnose.h>
+#include <rtl/alloc.h>
-#include "rtllifecycle.h"
+#include <rtllifecycle.h>
static const sal_Int32 RTL_HASHTABLE_SIZE[] =
{
diff --git a/sal/rtl/math.cxx b/sal/rtl/math.cxx
index 64b5be8bcc78..a9404871c228 100644
--- a/sal/rtl/math.cxx
+++ b/sal/rtl/math.cxx
@@ -17,18 +17,18 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "rtl/math.h"
-
-#include "osl/diagnose.h"
-#include "rtl/alloc.h"
-#include "rtl/character.hxx"
-#include "rtl/math.hxx"
-#include "rtl/strbuf.h"
-#include "rtl/string.h"
-#include "rtl/ustrbuf.h"
-#include "rtl/ustring.h"
-#include "sal/mathconf.h"
-#include "sal/types.h"
+#include <rtl/math.h>
+
+#include <osl/diagnose.h>
+#include <rtl/alloc.h>
+#include <rtl/character.hxx>
+#include <rtl/math.hxx>
+#include <rtl/strbuf.h>
+#include <rtl/string.h>
+#include <rtl/ustrbuf.h>
+#include <rtl/ustring.h>
+#include <sal/mathconf.h>
+#include <sal/types.h>
#include <algorithm>
#include <cassert>
diff --git a/sal/rtl/random.cxx b/sal/rtl/random.cxx
index 4fe8b049196f..1c28c47db43b 100644
--- a/sal/rtl/random.cxx
+++ b/sal/rtl/random.cxx
@@ -24,7 +24,7 @@
#include <rtl/alloc.h>
#include <rtl/digest.h>
#include <rtl/random.h>
-#include "oslrandom.h"
+#include <oslrandom.h>
#define RTL_RANDOM_RNG_1(a) ((a) * 16807L)
#define RTL_RANDOM_RNG_2(a) ((a) * 65539L)
diff --git a/sal/rtl/rtl_process.cxx b/sal/rtl/rtl_process.cxx
index 4904ff224a7b..42c24e80074d 100644
--- a/sal/rtl/rtl_process.cxx
+++ b/sal/rtl/rtl_process.cxx
@@ -17,14 +17,14 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "sal/config.h"
+#include <sal/config.h>
#include <cstring>
-#include "rtl/instance.hxx"
-#include "rtl/process.h"
-#include "rtl/uuid.h"
-#include "sal/types.h"
+#include <rtl/instance.hxx>
+#include <rtl/process.h>
+#include <rtl/uuid.h>
+#include <sal/types.h>
namespace
{
diff --git a/sal/rtl/strimp.hxx b/sal/rtl/strimp.hxx
index 5583a82f2249..c6325dedaa75 100644
--- a/sal/rtl/strimp.hxx
+++ b/sal/rtl/strimp.hxx
@@ -26,7 +26,7 @@
#endif
-#include "sal/types.h"
+#include <sal/types.h>
/* ======================================================================= */
/* Help functions for String and UString */
diff --git a/sal/rtl/string.cxx b/sal/rtl/string.cxx
index 863d6b870b3e..8dbcee763a95 100644
--- a/sal/rtl/string.cxx
+++ b/sal/rtl/string.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "sal/config.h"
+#include <sal/config.h>
#ifdef _MSC_VER
#pragma warning(disable:4738) // storing 32-bit float result in memory, possible loss of performance
@@ -35,7 +35,7 @@
#include <rtl/character.hxx>
#include <rtl/string.h>
-#include "rtl/math.h"
+#include <rtl/math.h>
/* ======================================================================= */
diff --git a/sal/rtl/unload.cxx b/sal/rtl/unload.cxx
index 0b5bc2e79d27..975e575db5e9 100644
--- a/sal/rtl/unload.cxx
+++ b/sal/rtl/unload.cxx
@@ -17,10 +17,10 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "sal/config.h"
+#include <sal/config.h>
-#include "osl/time.h"
-#include "rtl/unload.h"
+#include <osl/time.h>
+#include <rtl/unload.h>
extern "C" void rtl_moduleCount_acquire(rtl_ModuleCount *) {}
diff --git a/sal/rtl/uri.cxx b/sal/rtl/uri.cxx
index 57a7102a38eb..73fb8a474763 100644
--- a/sal/rtl/uri.cxx
+++ b/sal/rtl/uri.cxx
@@ -17,17 +17,17 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "rtl/character.hxx"
-#include "rtl/strbuf.hxx"
-#include "rtl/textenc.h"
-#include "rtl/textcvt.h"
-#include "rtl/uri.h"
-#include "rtl/ustrbuf.h"
-#include "rtl/ustrbuf.hxx"
-#include "rtl/ustring.h"
-#include "rtl/ustring.hxx"
-#include "sal/types.h"
-#include "sal/macros.h"
+#include <rtl/character.hxx>
+#include <rtl/strbuf.hxx>
+#include <rtl/textenc.h>
+#include <rtl/textcvt.h>
+#include <rtl/uri.h>
+#include <rtl/ustrbuf.h>
+#include <rtl/ustrbuf.hxx>
+#include <rtl/ustring.h>
+#include <rtl/ustring.hxx>
+#include <sal/types.h>
+#include <sal/macros.h>
#include <algorithm>
#include <cstddef>
diff --git a/sal/rtl/ustrbuf.cxx b/sal/rtl/ustrbuf.cxx
index 508c8d7a9c7c..dfb2c1a06a30 100644
--- a/sal/rtl/ustrbuf.cxx
+++ b/sal/rtl/ustrbuf.cxx
@@ -23,7 +23,7 @@
#include <osl/diagnose.h>
#include <rtl/character.hxx>
#include <rtl/ustrbuf.hxx>
-#include <strimp.hxx>
+#include "strimp.hxx"
#if USE_SDT_PROBES
#define RTL_LOG_STRING_BITS 16
diff --git a/sal/rtl/ustring.cxx b/sal/rtl/ustring.cxx
index a5b67a8760fc..167cdf2eab6d 100644
--- a/sal/rtl/ustring.cxx
+++ b/sal/rtl/ustring.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "sal/config.h"
+#include <sal/config.h>
#ifdef _MSC_VER
#pragma warning(disable:4738) // storing 32-bit float result in memory, possible loss of performance
@@ -44,7 +44,7 @@
#include <rtl/character.hxx>
#include <rtl/ustring.h>
-#include "rtl/math.h"
+#include <rtl/math.h>
/* ======================================================================= */