From f165aa36006476180f505ac88b61560235f765bc Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 25 Jul 2019 14:42:16 +0200 Subject: X11: Fix unused parameter warnings --- pugl/pugl_x11_gl.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pugl/pugl_x11_gl.c b/pugl/pugl_x11_gl.c index 0ada53f..0102f4c 100644 --- a/pugl/pugl_x11_gl.c +++ b/pugl/pugl_x11_gl.c @@ -176,12 +176,16 @@ puglX11GlLeave(PuglView* view, bool flush) static int puglX11GlResize(PuglView* view, int width, int height) { + (void)view; + (void)width; + (void)height; return 0; } static void* puglX11GlGetHandle(PuglView* view) { + (void)view; return NULL; } -- cgit v1.2.1