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/test_inline_objcpp.mm | |
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/test_inline_objcpp.mm')
-rw-r--r-- | test/test_inline_objcpp.mm | 9 |
1 files changed, 5 insertions, 4 deletions
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 |