(svn r12909) [0.6] -Fix (r12866): missing #defines 0.6
authorglx
Sat, 26 Apr 2008 21:34:30 +0000
branch0.6
changeset 10367 94c008da45c4
parent 10366 960aae8c20e2
child 10474 80c90b755053
(svn r12909) [0.6] -Fix (r12866): missing #defines
src/stdafx.h
--- a/src/stdafx.h	Sat Apr 26 20:54:56 2008 +0000
+++ b/src/stdafx.h	Sat Apr 26 21:34:30 2008 +0000
@@ -32,8 +32,10 @@
 		#include <stdint.h>
 	#endif
 #else
-	#define INT64_MAX 9223372036854775807LL
+	#define INT64_MAX (9223372036854775807LL)
 	#define INT64_MIN (-INT64_MAX - 1)
+	#define INT16_MAX (32767)
+	#define INT16_MIN (-INT16_MAX - 1)
 #endif
 
 #include <cstdio>