"VC 2010 Build" [Chris Danford] Nobody on the team owns VS2k10 so we can't test this, but in case someone else makes a project file, this is one less thing you have to do to get things working.

This commit is contained in:
AJ Kelly
2010-05-09 23:25:09 -05:00
parent c8cfb97bf8
commit 782dc574df
+2
View File
@@ -109,7 +109,9 @@ typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
#define INT64_C(i) i##i64
#define UINT64_C(i) i##i64
#if _MSC_VER < 1600 // 1600 = VC++ 2010
static inline int64_t llabs( int64_t i ) { return i >= 0? i: -i; }
#endif // #if _MSC_VER < 1600
#endif
#undef min