aboutsummaryrefslogtreecommitdiffstats
path: root/test/cpp/test_build.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2025-02-07 15:35:19 -0500
committerDavid Robillard <d@drobilla.net>2025-02-07 15:35:19 -0500
commit7976df1832f8164e459902dc247a232f49b61064 (patch)
treed00dc8c7317b9ac3098f7facb47d84ffe34109f9 /test/cpp/test_build.cpp
parentda301d48c6d519fb2020573c6a501a0c43f9064c (diff)
downloadpugl-7976df1832f8164e459902dc247a232f49b61064.tar.gz
pugl-7976df1832f8164e459902dc247a232f49b61064.tar.bz2
pugl-7976df1832f8164e459902dc247a232f49b61064.zip
Use angle brackets for library includes and clean up include paths
Diffstat (limited to 'test/cpp/test_build.cpp')
-rw-r--r--test/cpp/test_build.cpp14
1 files changed, 6 insertions, 8 deletions
diff --git a/test/cpp/test_build.cpp b/test/cpp/test_build.cpp
index 2f24c5f..2419be9 100644
--- a/test/cpp/test_build.cpp
+++ b/test/cpp/test_build.cpp
@@ -1,15 +1,13 @@
// Copyright 2020 David Robillard <d@drobilla.net>
// SPDX-License-Identifier: ISC
-/*
- Tests that C++ headers compile without any warnings.
-*/
+// Tests that C++ headers compile without any warnings
-#include "pugl/cairo.hpp" // IWYU pragma: keep
-#include "pugl/gl.hpp" // IWYU pragma: keep
-#include "pugl/pugl.h" // IWYU pragma: keep
-#include "pugl/pugl.hpp" // IWYU pragma: keep
-#include "pugl/stub.hpp" // IWYU pragma: keep
+#include <pugl/cairo.hpp> // IWYU pragma: keep
+#include <pugl/gl.hpp> // IWYU pragma: keep
+#include <pugl/pugl.h> // IWYU pragma: keep
+#include <pugl/pugl.hpp> // IWYU pragma: keep
+#include <pugl/stub.hpp> // IWYU pragma: keep
int
main()