From c8ce62a6a883f8f8d512d4dab71e2de3c67bdbb3 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 24 Nov 2024 17:47:22 -0500 Subject: Use angle brackets for library includes --- include/raul/Array.hpp | 4 ++-- include/raul/Maid.hpp | 2 +- include/raul/Path.hpp | 4 ++-- include/raul/Process.hpp | 2 +- include/raul/Symbol.hpp | 2 +- test/array_test.cpp | 2 +- test/build_test.cpp | 24 ++++++++++++------------ test/double_buffer_test.cpp | 2 +- test/headers/test_headers.cpp | 24 ++++++++++++------------ test/maid_test.cpp | 2 +- test/path_test.cpp | 4 ++-- test/ringbuffer_test.cpp | 2 +- test/sem_test.cpp | 2 +- test/socket_test.cpp | 2 +- test/symbol_test.cpp | 2 +- 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 -#include // IWYU pragma: keep +#include #include #include #include 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 #include #include 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 +#include #include #include 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 #include #include 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 #include #include 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 #include #include 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 // 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 +#include +#include +#include +#include +#include +#include +#include +#include +#include #ifndef _WIN32 -# include "raul/Process.hpp" -# include "raul/Socket.hpp" +# include +# include #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 #include 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 // 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 // IWYU pragma: keep +#include // IWYU pragma: keep +#include // IWYU pragma: keep +#include // IWYU pragma: keep +#include // IWYU pragma: keep +#include // IWYU pragma: keep +#include // IWYU pragma: keep +#include // IWYU pragma: keep +#include // IWYU pragma: keep +#include // IWYU pragma: keep #ifndef _WIN32 -# include "raul/Process.hpp" // IWYU pragma: keep -# include "raul/Socket.hpp" // IWYU pragma: keep +# include // IWYU pragma: keep +# include // 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 #include #include 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 +#include #include #include 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 #include #include 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 #include #include 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 #include #include 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 #include #include 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 #include #include -- cgit v1.2.1