1
0
Fork 0

disable some vs2005 warnings

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2685
This commit is contained in:
Sebastian Strohhäcker 2006-08-08 20:11:43 +00:00
parent 190e290e83
commit 5f90852ff6

View file

@ -54,6 +54,10 @@
#define GCC_ATTRIBUTE(x) /* attribute not supported */
#define GCC_UNLIKELY(x) (x)
#if defined(_MSC_VER) && (_MSC_VER >= 1400)
#pragma warning(disable : 4996)
#endif
typedef double Real64;
/* The internal types */
typedef unsigned char Bit8u;