Fix missing pragma push

I forgot to pragma push the ignored warning in #10877 this adds the
missing ones.
This commit is contained in:
Hein-Pieter van Braam 2017-09-02 11:03:27 +02:00
parent 437fb12e1a
commit 7df28d1799
2 changed files with 2 additions and 0 deletions

View file

@ -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

View file

@ -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