From a895aec68686582c9e41d23dc29bf71e0b5d603e Mon Sep 17 00:00:00 2001 From: Sean Barrett Date: Sun, 11 Aug 2019 05:19:00 -0700 Subject: [PATCH] stb_c_lexer: fix a static analysis warning --- stb_c_lexer.h | 1 + 1 file changed, 1 insertion(+) diff --git a/stb_c_lexer.h b/stb_c_lexer.h index fd0632c..c340e2c 100644 --- a/stb_c_lexer.h +++ b/stb_c_lexer.h @@ -891,6 +891,7 @@ void dummy(void) 4. }; (void) sizeof(some_floats); + (void) some_floats[1]; printf("test %d",1); // https://github.com/nothings/stb/issues/13 }