Merge pull request #2493 from Kloen/killing-warnings-final-mix

video_core: silence unused-local-typedef boost related warnings on GCC
This commit is contained in:
Yuri Kunde Schlesner 2017-01-29 15:35:59 -08:00 committed by GitHub
commit 1016e31fc7
1 changed files with 7 additions and 0 deletions

View File

@ -8,7 +8,14 @@
#include <memory>
#include <set>
#include <tuple>
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-local-typedef"
#endif
#include <boost/icl/interval_map.hpp>
#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif
#include <glad/glad.h>
#include "common/assert.h"
#include "common/common_funcs.h"