From 655b2b1f06438bbbaa4b4ae24dcb3a81195faa53 Mon Sep 17 00:00:00 2001 From: Jacko Dirks Date: Sat, 15 Aug 2020 17:19:02 +0200 Subject: [PATCH] stb_image.h: Suppress warnings about out_size, delay_size These two variables are unused on some targets, resulting in warnings. Add STBI_NOTUSED around them to suppress those warnings. --- stb_image.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/stb_image.h b/stb_image.h index f59d773..a5ed6aa 100644 --- a/stb_image.h +++ b/stb_image.h @@ -116,6 +116,8 @@ RECENT REVISION HISTORY: Ryan C. Gordon [reserved] [reserved] DO NOT ADD YOUR NAME HERE + Jacko Dirks + To add your name to the credits, pick a random blank space in the middle and fill it. 80% of merge conflicts on stb PRs are due to people adding their name at the end of the credits. @@ -6786,6 +6788,10 @@ static void *stbi__load_gif_main(stbi__context *s, int **delays, int *x, int *y, int stride; int out_size = 0; int delays_size = 0; + + STBI_NOTUSED(out_size); + STBI_NOTUSED(delays_size); + memset(&g, 0, sizeof(g)); if (delays) { *delays = 0; @@ -7215,8 +7221,8 @@ static int stbi__psd_is16(stbi__context *s) stbi__rewind( s ); return 0; } - (void) stbi__get32be(s); - (void) stbi__get32be(s); + STBI_NOTUSED(stbi__get32be(s)); + STBI_NOTUSED(stbi__get32be(s)); depth = stbi__get16be(s); if (depth != 16) { stbi__rewind( s );