diff options
author | David Robillard <d@drobilla.net> | 2025-02-07 15:35:19 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-02-07 15:35:19 -0500 |
commit | 7976df1832f8164e459902dc247a232f49b61064 (patch) | |
tree | d00dc8c7317b9ac3098f7facb47d84ffe34109f9 /include/pugl | |
parent | da301d48c6d519fb2020573c6a501a0c43f9064c (diff) | |
download | pugl-7976df1832f8164e459902dc247a232f49b61064.tar.gz pugl-7976df1832f8164e459902dc247a232f49b61064.tar.bz2 pugl-7976df1832f8164e459902dc247a232f49b61064.zip |
Use angle brackets for library includes and clean up include paths
Diffstat (limited to 'include/pugl')
-rw-r--r-- | include/pugl/cairo.h | 4 | ||||
-rw-r--r-- | include/pugl/gl.h | 4 | ||||
-rw-r--r-- | include/pugl/pugl.h | 2 | ||||
-rw-r--r-- | include/pugl/stub.h | 4 | ||||
-rw-r--r-- | include/pugl/vulkan.h | 4 |
5 files changed, 9 insertions, 9 deletions
diff --git a/include/pugl/cairo.h b/include/pugl/cairo.h index fda1191..9a0eccf 100644 --- a/include/pugl/cairo.h +++ b/include/pugl/cairo.h @@ -4,8 +4,8 @@ #ifndef PUGL_CAIRO_H #define PUGL_CAIRO_H -#include "pugl/attributes.h" -#include "pugl/pugl.h" +#include <pugl/attributes.h> +#include <pugl/pugl.h> PUGL_BEGIN_DECLS diff --git a/include/pugl/gl.h b/include/pugl/gl.h index ac7c557..9ea7cfe 100644 --- a/include/pugl/gl.h +++ b/include/pugl/gl.h @@ -4,8 +4,8 @@ #ifndef PUGL_GL_H #define PUGL_GL_H -#include "pugl/attributes.h" -#include "pugl/pugl.h" +#include <pugl/attributes.h> +#include <pugl/pugl.h> // IWYU pragma: begin_exports diff --git a/include/pugl/pugl.h b/include/pugl/pugl.h index 2e1cdce..0fb2bf7 100644 --- a/include/pugl/pugl.h +++ b/include/pugl/pugl.h @@ -4,7 +4,7 @@ #ifndef PUGL_PUGL_H #define PUGL_PUGL_H -#include "pugl/attributes.h" +#include <pugl/attributes.h> #include <stddef.h> #include <stdint.h> diff --git a/include/pugl/stub.h b/include/pugl/stub.h index 8bfe4d8..e81e56f 100644 --- a/include/pugl/stub.h +++ b/include/pugl/stub.h @@ -4,8 +4,8 @@ #ifndef PUGL_STUB_H #define PUGL_STUB_H -#include "pugl/attributes.h" -#include "pugl/pugl.h" +#include <pugl/attributes.h> +#include <pugl/pugl.h> PUGL_BEGIN_DECLS diff --git a/include/pugl/vulkan.h b/include/pugl/vulkan.h index a26ca8a..73745ca 100644 --- a/include/pugl/vulkan.h +++ b/include/pugl/vulkan.h @@ -10,8 +10,8 @@ #ifndef PUGL_VULKAN_H #define PUGL_VULKAN_H -#include "pugl/attributes.h" -#include "pugl/pugl.h" +#include <pugl/attributes.h> +#include <pugl/pugl.h> #include <vulkan/vulkan_core.h> |