16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-21 01:19:18 +02:00

supress warnings in python.h

This commit is contained in:
milek7
2018-10-23 17:24:54 +02:00
parent 0c460e9e0d
commit 472255931d

View File

@@ -18,7 +18,12 @@ http://mozilla.org/MPL/2.0/.
#undef _XOPEN_SOURCE
#endif
#ifdef _MSC_VER
#pragma warning( push )
#pragma warning( disable : 5033 )
#endif
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wregister"
#endif
@@ -33,6 +38,9 @@ http://mozilla.org/MPL/2.0/.
#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif
#ifdef _MSC_VER
#pragma warning( pop )
#endif
#include "Classes.h"
#include "utilities.h"