From 3505a9a35e68b52ce3cf30c569ab291f64707ece Mon Sep 17 00:00:00 2001 From: Meep-Eep Date: Sun, 16 Sep 2007 15:26:03 +0000 Subject: [PATCH] Allow 'bool' to be used in combination with files which include . git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2853 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/types.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sc2/src/types.h b/sc2/src/types.h index ee67a08df..936b596fe 100644 --- a/sc2/src/types.h +++ b/sc2/src/types.h @@ -84,10 +84,12 @@ # undef UQM_INT64 #endif +#undef false +#undef true typedef enum { false = 0, - true + true = 1 } bool; /* If it isn't char, what is it ?!*/