diff options
author | David Robillard <d@drobilla.net> | 2022-06-05 20:24:51 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-06-08 19:48:13 -0400 |
commit | 27ce10b5039e931eaad33e9499a630552d4e1f06 (patch) | |
tree | 9ad33d28562935d72f768e68e9d24531b6059d8a /test | |
parent | bb0fe3975df149eb45a21e39940f71e2273c8fd5 (diff) | |
download | pugl-27ce10b5039e931eaad33e9499a630552d4e1f06.tar.gz pugl-27ce10b5039e931eaad33e9499a630552d4e1f06.tar.bz2 pugl-27ce10b5039e931eaad33e9499a630552d4e1f06.zip |
Separate private and public function implementations
Diffstat (limited to 'test')
-rw-r--r-- | test/test_inline_cpp.cpp | 3 | ||||
-rw-r--r-- | test/test_inline_objcpp.mm | 9 |
2 files changed, 7 insertions, 5 deletions
diff --git a/test/test_inline_cpp.cpp b/test/test_inline_cpp.cpp index 5b5278e..f5694eb 100644 --- a/test/test_inline_cpp.cpp +++ b/test/test_inline_cpp.cpp @@ -23,7 +23,8 @@ # pragma GCC diagnostic ignored "-Wzero-as-null-pointer-constant" #endif -#include "../src/implementation.c" // IWYU pragma: keep +#include "../src/common.c" // IWYU pragma: keep +#include "../src/internal.c" // IWYU pragma: keep #if defined(_WIN32) # include "../src/win.c" // IWYU pragma: keep diff --git a/test/test_inline_objcpp.mm b/test/test_inline_objcpp.mm index 0c35f73..1c9079b 100644 --- a/test/test_inline_objcpp.mm +++ b/test/test_inline_objcpp.mm @@ -9,10 +9,11 @@ # pragma clang diagnostic ignored "-Wold-style-cast" #endif -#include "../src/implementation.c" // IWYU pragma: keep -#include "../src/mac.h" // IWYU pragma: keep -#include "../src/mac.m" // IWYU pragma: keep -#include "../src/mac_stub.m" // IWYU pragma: keep +#include "../src/common.c" // IWYU pragma: keep +#include "../src/internal.c" // IWYU pragma: keep +#include "../src/mac.h" // IWYU pragma: keep +#include "../src/mac.m" // IWYU pragma: keep +#include "../src/mac_stub.m" // IWYU pragma: keep #if defined(WITH_CAIRO) # include "../src/mac_cairo.m" // IWYU pragma: keep |