Fix missing pragma push
I forgot to pragma push the ignored warning in #10877 this adds the missing ones.
This commit is contained in:
parent
437fb12e1a
commit
7df28d1799
2 changed files with 2 additions and 0 deletions
|
@ -31,6 +31,7 @@
|
|||
|
||||
#include "os/file_access.h"
|
||||
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
|
||||
#include "thirdparty/misc/stb_vorbis.c"
|
||||
#pragma GCC diagnostic pop
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
#include "servers/audio/audio_stream.h"
|
||||
|
||||
#define STB_VORBIS_HEADER_ONLY
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
|
||||
#include "thirdparty/misc/stb_vorbis.c"
|
||||
#pragma GCC diagnostic pop
|
||||
|
|
Loading…
Reference in a new issue