diff options
-rw-r--r-- | include/raul/Array.hpp | 4 | ||||
-rw-r--r-- | include/raul/Maid.hpp | 2 | ||||
-rw-r--r-- | include/raul/Path.hpp | 4 | ||||
-rw-r--r-- | include/raul/Process.hpp | 2 | ||||
-rw-r--r-- | include/raul/Symbol.hpp | 2 | ||||
-rw-r--r-- | test/array_test.cpp | 2 | ||||
-rw-r--r-- | test/build_test.cpp | 24 | ||||
-rw-r--r-- | test/double_buffer_test.cpp | 2 | ||||
-rw-r--r-- | test/headers/test_headers.cpp | 24 | ||||
-rw-r--r-- | test/maid_test.cpp | 2 | ||||
-rw-r--r-- | test/path_test.cpp | 4 | ||||
-rw-r--r-- | test/ringbuffer_test.cpp | 2 | ||||
-rw-r--r-- | test/sem_test.cpp | 2 | ||||
-rw-r--r-- | test/socket_test.cpp | 2 | ||||
-rw-r--r-- | test/symbol_test.cpp | 2 | ||||
-rw-r--r-- | test/thread_test.cpp | 2 |
16 files changed, 41 insertions, 41 deletions
diff --git a/include/raul/Array.hpp b/include/raul/Array.hpp index 0ed0ae0..411f153 100644 --- a/include/raul/Array.hpp +++ b/include/raul/Array.hpp @@ -4,9 +4,9 @@ #ifndef RAUL_ARRAY_HPP #define RAUL_ARRAY_HPP -#include "raul/Maid.hpp" +#include <raul/Maid.hpp> -#include <algorithm> // IWYU pragma: keep +#include <algorithm> #include <cassert> #include <cstddef> #include <memory> diff --git a/include/raul/Maid.hpp b/include/raul/Maid.hpp index 2ca6fad..6eb684e 100644 --- a/include/raul/Maid.hpp +++ b/include/raul/Maid.hpp @@ -4,7 +4,7 @@ #ifndef RAUL_MAID_HPP #define RAUL_MAID_HPP -#include "raul/Deletable.hpp" +#include <raul/Deletable.hpp> #include <atomic> #include <memory> diff --git a/include/raul/Path.hpp b/include/raul/Path.hpp index b204bab..8d55803 100644 --- a/include/raul/Path.hpp +++ b/include/raul/Path.hpp @@ -4,8 +4,8 @@ #ifndef RAUL_PATH_HPP #define RAUL_PATH_HPP -#include "raul/Exception.hpp" -#include "raul/Symbol.hpp" +#include <raul/Exception.hpp> +#include <raul/Symbol.hpp> #include <algorithm> #include <cstddef> diff --git a/include/raul/Process.hpp b/include/raul/Process.hpp index 056cfff..37d1d1f 100644 --- a/include/raul/Process.hpp +++ b/include/raul/Process.hpp @@ -4,7 +4,7 @@ #ifndef RAUL_PROCESS_HPP #define RAUL_PROCESS_HPP -#include "raul/Noncopyable.hpp" +#include <raul/Noncopyable.hpp> #include <sys/resource.h> #include <unistd.h> diff --git a/include/raul/Symbol.hpp b/include/raul/Symbol.hpp index 714657c..4889822 100644 --- a/include/raul/Symbol.hpp +++ b/include/raul/Symbol.hpp @@ -4,7 +4,7 @@ #ifndef RAUL_SYMBOL_HPP #define RAUL_SYMBOL_HPP -#include "raul/Exception.hpp" +#include <raul/Exception.hpp> #include <algorithm> #include <cstddef> diff --git a/test/array_test.cpp b/test/array_test.cpp index 5f10693..ce299da 100644 --- a/test/array_test.cpp +++ b/test/array_test.cpp @@ -3,7 +3,7 @@ #undef NDEBUG -#include "raul/Array.hpp" +#include <raul/Array.hpp> #include <cassert> #include <cstdio> diff --git a/test/build_test.cpp b/test/build_test.cpp index f8c3085..5084bd2 100644 --- a/test/build_test.cpp +++ b/test/build_test.cpp @@ -1,20 +1,20 @@ // Copyright 2007-2017 David Robillard <d@drobilla.net> // SPDX-License-Identifier: GPL-3.0-or-later -#include "raul/Array.hpp" -#include "raul/Deletable.hpp" -#include "raul/DoubleBuffer.hpp" -#include "raul/Exception.hpp" -#include "raul/Maid.hpp" -#include "raul/Noncopyable.hpp" -#include "raul/Path.hpp" -#include "raul/RingBuffer.hpp" -#include "raul/Semaphore.hpp" -#include "raul/Symbol.hpp" +#include <raul/Array.hpp> +#include <raul/Deletable.hpp> +#include <raul/DoubleBuffer.hpp> +#include <raul/Exception.hpp> +#include <raul/Maid.hpp> +#include <raul/Noncopyable.hpp> +#include <raul/Path.hpp> +#include <raul/RingBuffer.hpp> +#include <raul/Semaphore.hpp> +#include <raul/Symbol.hpp> #ifndef _WIN32 -# include "raul/Process.hpp" -# include "raul/Socket.hpp" +# include <raul/Process.hpp> +# include <raul/Socket.hpp> #endif class DeletableThing : public raul::Deletable diff --git a/test/double_buffer_test.cpp b/test/double_buffer_test.cpp index dbdaa4b..6c49524 100644 --- a/test/double_buffer_test.cpp +++ b/test/double_buffer_test.cpp @@ -3,7 +3,7 @@ #undef NDEBUG -#include "raul/DoubleBuffer.hpp" +#include <raul/DoubleBuffer.hpp> #include <cassert> diff --git a/test/headers/test_headers.cpp b/test/headers/test_headers.cpp index 7e28da3..6a3cbfc 100644 --- a/test/headers/test_headers.cpp +++ b/test/headers/test_headers.cpp @@ -1,20 +1,20 @@ // Copyright 2022 David Robillard <d@drobilla.net> // SPDX-License-Identifier: GPL-3.0-or-later -#include "raul/Array.hpp" // IWYU pragma: keep -#include "raul/Deletable.hpp" // IWYU pragma: keep -#include "raul/DoubleBuffer.hpp" // IWYU pragma: keep -#include "raul/Exception.hpp" // IWYU pragma: keep -#include "raul/Maid.hpp" // IWYU pragma: keep -#include "raul/Noncopyable.hpp" // IWYU pragma: keep -#include "raul/Path.hpp" // IWYU pragma: keep -#include "raul/RingBuffer.hpp" // IWYU pragma: keep -#include "raul/Semaphore.hpp" // IWYU pragma: keep -#include "raul/Symbol.hpp" // IWYU pragma: keep +#include <raul/Array.hpp> // IWYU pragma: keep +#include <raul/Deletable.hpp> // IWYU pragma: keep +#include <raul/DoubleBuffer.hpp> // IWYU pragma: keep +#include <raul/Exception.hpp> // IWYU pragma: keep +#include <raul/Maid.hpp> // IWYU pragma: keep +#include <raul/Noncopyable.hpp> // IWYU pragma: keep +#include <raul/Path.hpp> // IWYU pragma: keep +#include <raul/RingBuffer.hpp> // IWYU pragma: keep +#include <raul/Semaphore.hpp> // IWYU pragma: keep +#include <raul/Symbol.hpp> // IWYU pragma: keep #ifndef _WIN32 -# include "raul/Process.hpp" // IWYU pragma: keep -# include "raul/Socket.hpp" // IWYU pragma: keep +# include <raul/Process.hpp> // IWYU pragma: keep +# include <raul/Socket.hpp> // IWYU pragma: keep #endif #if defined(__GNUC__) diff --git a/test/maid_test.cpp b/test/maid_test.cpp index fbd278a..2088c83 100644 --- a/test/maid_test.cpp +++ b/test/maid_test.cpp @@ -3,7 +3,7 @@ #undef NDEBUG -#include "raul/Maid.hpp" +#include <raul/Maid.hpp> #include <atomic> #include <cassert> diff --git a/test/path_test.cpp b/test/path_test.cpp index 681cebe..107bf22 100644 --- a/test/path_test.cpp +++ b/test/path_test.cpp @@ -3,8 +3,8 @@ #undef NDEBUG -#include "raul/Path.hpp" -#include "raul/Symbol.hpp" +#include <raul/Path.hpp> +#include <raul/Symbol.hpp> #include <cassert> #include <cstring> diff --git a/test/ringbuffer_test.cpp b/test/ringbuffer_test.cpp index 59529e8..c623166 100644 --- a/test/ringbuffer_test.cpp +++ b/test/ringbuffer_test.cpp @@ -3,7 +3,7 @@ #undef NDEBUG -#include "raul/RingBuffer.hpp" +#include <raul/RingBuffer.hpp> #include <cassert> #include <climits> diff --git a/test/sem_test.cpp b/test/sem_test.cpp index 103e5e5..9fb17a6 100644 --- a/test/sem_test.cpp +++ b/test/sem_test.cpp @@ -3,7 +3,7 @@ #undef NDEBUG -#include "raul/Semaphore.hpp" +#include <raul/Semaphore.hpp> #include <cassert> #include <chrono> diff --git a/test/socket_test.cpp b/test/socket_test.cpp index 1f2d736..9fd7307 100644 --- a/test/socket_test.cpp +++ b/test/socket_test.cpp @@ -3,7 +3,7 @@ #undef NDEBUG -#include "raul/Socket.hpp" +#include <raul/Socket.hpp> #include <poll.h> #include <sys/types.h> diff --git a/test/symbol_test.cpp b/test/symbol_test.cpp index 2d656cb..9266398 100644 --- a/test/symbol_test.cpp +++ b/test/symbol_test.cpp @@ -3,7 +3,7 @@ #undef NDEBUG -#include "raul/Symbol.hpp" +#include <raul/Symbol.hpp> #include <cassert> #include <iostream> diff --git a/test/thread_test.cpp b/test/thread_test.cpp index 0eed30d..26f9ac9 100644 --- a/test/thread_test.cpp +++ b/test/thread_test.cpp @@ -3,7 +3,7 @@ #undef NDEBUG -#include "raul/Semaphore.hpp" +#include <raul/Semaphore.hpp> #include <atomic> #include <cassert> |