mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
disable "nonstandard extension used 'bool'" warning spam
In newer versions of MSVC, this could have been achieved with /wd4237, however 4.2 doesn't have this option, it only seems to have the pragma. Ah well.
This commit is contained in:
parent
c48fc69cf3
commit
67816d5213
1 changed files with 3 additions and 0 deletions
|
@ -11,6 +11,9 @@
|
|||
#define COMPAT_CONST
|
||||
#endif
|
||||
|
||||
// DIsable "nonstandard extension used : 'bool'" warning spam
|
||||
#pragma warning( disable : 4237 )
|
||||
|
||||
#define MSVC420_VERSION 1020
|
||||
|
||||
// STL compatibility.
|
||||
|
|
Loading…
Reference in a new issue