Fixed warning.

This commit is contained in:
Branimir Karadžić 2015-03-22 17:42:19 -07:00
parent 741a2692e9
commit 5d0b8c1f75

View file

@ -350,8 +350,8 @@
#pragma clang diagnostic ignored "-Wexit-time-destructors" // warning : declaration requires an exit-time destructor // exit-time destruction order is undefined. if MemFree() leads to users code that has been disabled before exit it might cause problems. ImGui coding style welcomes static/globals.
#pragma clang diagnostic ignored "-Wglobal-constructors" // warning : declaration requires a global destructor // similar to above, not sure what the exact difference it.
#pragma clang diagnostic ignored "-Wsign-conversion" // warning : implicit conversion changes signedness //
#endif
#ifdef __GNUC__
#pragma clang diagnostic ignored "-Wunused-parameter" // warning: unused parameter xxxx
#elif defined(__GNUC__)
#pragma GCC diagnostic ignored "-Wunused-function" // warning: 'xxxx' defined but not used
#pragma GCC diagnostic ignored "-Wunused-parameter" // warning: unused parameter xxxx
#pragma GCC diagnostic ignored "-Wtype-limits" // warning: comparison is always true due to limited range of data type