diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-11-09 15:15:40 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-11-09 18:48:42 -0600 |
commit | bda91b953bbb44fe10cc962f4be84a9305748609 (patch) | |
tree | bd3b3f0856cac37a1c579a420a431b67f4d66ce6 /include/sal | |
parent | 1b9742b7d7827064730cfd92ebfbba4e80b9b6a5 (diff) |
fdo#65108 inter-module includes <> include/sal
Change-Id: I4adce49a3f19eb16eb0b0d4a743b150c28a4a453
Diffstat (limited to 'include/sal')
-rw-r--r-- | include/sal/detail/log.h | 6 | ||||
-rw-r--r-- | include/sal/log.hxx | 8 | ||||
-rw-r--r-- | include/sal/main.h | 6 | ||||
-rw-r--r-- | include/sal/mathconf.h | 2 | ||||
-rw-r--r-- | include/sal/saldllapi.h | 4 |
5 files changed, 13 insertions, 13 deletions
diff --git a/include/sal/detail/log.h b/include/sal/detail/log.h index 5cfc5e5fc0cc..bd44cdae78c8 100644 --- a/include/sal/detail/log.h +++ b/include/sal/detail/log.h @@ -10,10 +10,10 @@ #ifndef INCLUDED_SAL_DETAIL_LOG_H #define INCLUDED_SAL_DETAIL_LOG_H -#include "sal/config.h" +#include <sal/config.h> -#include "sal/saldllapi.h" -#include "sal/types.h" +#include <sal/saldllapi.h> +#include <sal/types.h> /** @cond INTERNAL */ diff --git a/include/sal/log.hxx b/include/sal/log.hxx index 23ea6f388c7c..563ed57a2c6d 100644 --- a/include/sal/log.hxx +++ b/include/sal/log.hxx @@ -10,15 +10,15 @@ #ifndef INCLUDED_SAL_LOG_HXX #define INCLUDED_SAL_LOG_HXX -#include "sal/config.h" +#include <sal/config.h> #include <cstdlib> #include <sstream> #include <string> -#include "sal/detail/log.h" -#include "sal/saldllapi.h" -#include "sal/types.h" +#include <sal/detail/log.h> +#include <sal/saldllapi.h> +#include <sal/types.h> // Avoid the use of other sal code in this header as much as possible, so that // this code can be called from other sal code without causing endless diff --git a/include/sal/main.h b/include/sal/main.h index 207e84788cc3..7553d6802121 100644 --- a/include/sal/main.h +++ b/include/sal/main.h @@ -20,10 +20,10 @@ #ifndef INCLUDED_SAL_MAIN_H #define INCLUDED_SAL_MAIN_H -#include "sal/config.h" +#include <sal/config.h> -#include "sal/saldllapi.h" -#include "sal/types.h" +#include <sal/saldllapi.h> +#include <sal/types.h> #if defined AIX #include <unistd.h> diff --git a/include/sal/mathconf.h b/include/sal/mathconf.h index 44adf8bc58ce..30895b696bb0 100644 --- a/include/sal/mathconf.h +++ b/include/sal/mathconf.h @@ -20,7 +20,7 @@ #ifndef INCLUDED_SAL_MATHCONF_H #define INCLUDED_SAL_MATHCONF_H -#include "osl/endian.h" +#include <osl/endian.h> #include <float.h> diff --git a/include/sal/saldllapi.h b/include/sal/saldllapi.h index 2eca05de7e18..71051726f722 100644 --- a/include/sal/saldllapi.h +++ b/include/sal/saldllapi.h @@ -20,9 +20,9 @@ #ifndef INCLUDED_SAL_SALDLLAPI_H #define INCLUDED_SAL_SALDLLAPI_H -#include "sal/config.h" +#include <sal/config.h> -#include "sal/types.h" +#include <sal/types.h> #if defined(SAL_DLLIMPLEMENTATION) #define SAL_DLLPUBLIC SAL_DLLPUBLIC_EXPORT |