Added compatibility for MSVC.NET
This commit is contained in:
parent
dc42894fb7
commit
995cb2bd4a
1 changed files with 2 additions and 1 deletions
|
|
@ -38,12 +38,13 @@
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#if defined(_MSC_VER) && (_MSC_VER < 1300)
|
||||
/*
|
||||
Maarten: added this code here because Mirkosoft has the
|
||||
nasty habit of #define min and max in stdlib.h (and windows.h)
|
||||
I'm trying to undo this horrible macro magic (microsoft yet macrohard)
|
||||
here. Sure hope it works
|
||||
Olivier: this has been removed in .NET :) One step more standard...
|
||||
*/
|
||||
#pragma warning(disable:4786)
|
||||
|
||||
|
|
|
|||
Reference in a new issue