From 988b4e2c80d85cdacc165a1ab660c5f481485c6a Mon Sep 17 00:00:00 2001 From: Jens Verwiebe Date: Mon, 15 Aug 2016 13:46:38 +0200 Subject: Tentative compile fix after recent gpu debug changes --- source/blender/gpu/intern/gpu_debug.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source') diff --git a/source/blender/gpu/intern/gpu_debug.c b/source/blender/gpu/intern/gpu_debug.c index 21458a22221..8d1ab43288a 100644 --- a/source/blender/gpu/intern/gpu_debug.c +++ b/source/blender/gpu/intern/gpu_debug.c @@ -43,6 +43,10 @@ #define CASE_CODE_RETURN_STR(code) case code: return #code; +#if (defined(__GNUC__) && !defined(__clang__)) && defined(NDEBUG) +# pragma GCC diagnostic ignored "-Wimplicit-function-declaration" +#endif + static const char *gpu_gl_error_symbol(GLenum err) { switch (err) { -- cgit v1.2.3