diff options
author | David Robillard <d@drobilla.net> | 2019-11-20 23:55:44 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-11-20 23:58:55 +0100 |
commit | ca0beb092436c74dad7ac19f04fb391380969681 (patch) | |
tree | 0ff5426c8e9ea9719e71ac3cdd723f8f403f0228 /pugl | |
parent | 196d8d2943e628bc53dc21f34859ad2740ef1142 (diff) | |
download | pugl-ca0beb092436c74dad7ac19f04fb391380969681.tar.gz pugl-ca0beb092436c74dad7ac19f04fb391380969681.tar.bz2 pugl-ca0beb092436c74dad7ac19f04fb391380969681.zip |
Mac: Fix unused parameter warning
Diffstat (limited to 'pugl')
-rw-r--r-- | pugl/detail/mac.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pugl/detail/mac.m b/pugl/detail/mac.m index 9378d6e..2e077be 100644 --- a/pugl/detail/mac.m +++ b/pugl/detail/mac.m @@ -696,7 +696,7 @@ puglFreeWorldInternals(PuglWorld* world) } void* -puglGetNativeWorld(PuglWorld* world) +puglGetNativeWorld(PuglWorld* PUGL_UNUSED(world)) { return NULL; } |