[core] fix stbi scan-build warning
This commit is contained in:
parent
97276035dc
commit
53059f298a
|
@ -602,7 +602,7 @@ typedef unsigned char validate_uint32[sizeof(stbi__uint32)==4 ? 1 : -1];
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
#define STBI_NOTUSED(v) (void)(v)
|
#define STBI_NOTUSED(v) (void)(v)
|
||||||
#else
|
#else
|
||||||
#define STBI_NOTUSED(v) (void)sizeof(v)
|
#define STBI_NOTUSED(v) (void)(v)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
|
|
Loading…
Reference in New Issue