1
0
forked from mirrors/0ad

Disable GCC warning triggered by wx headers

This was SVN commit r10908.
This commit is contained in:
Ykkrosh
2012-01-14 19:06:47 +00:00
parent 1389e754de
commit c9cdde256f
2 changed files with 12 additions and 0 deletions
@@ -27,6 +27,10 @@
# pragma warning(disable:4996) // deprecated CRT
#endif
#if defined(__GNUC__) && (__GNUC__*100 + __GNUC_MINOR__) >= 402 // (older GCCs don't support this pragma)
# pragma GCC diagnostic ignored "-Wredundant-decls" // triggered by wx/geometry.h
#endif
#include "wx/wx.h"
#include "GameInterface/Shareable.h"