summaryrefslogtreecommitdiff
path: root/STL/bool.h
diff options
context:
space:
mode:
Diffstat (limited to 'STL/bool.h')
-rw-r--r--STL/bool.h37
1 files changed, 18 insertions, 19 deletions
diff --git a/STL/bool.h b/STL/bool.h
index 6049da9163d..095ee898ad0 100644
--- a/STL/bool.h
+++ b/STL/bool.h
@@ -1,26 +1,25 @@
-// $Id$
+
#if !defined (ACE_BOOL_H)
#define ACE_BOOL_H
-#if defined (_MSC_VER)
- // Define bool out of the std namespace.
-# if _MSC_VER > 1010
-# include /**/ <yvals.h>
-# else /* _MSC_VER <= 1010 */
-# if !defined (bool)
-# define bool int
-# endif /* bool */
-
-# if !defined (true)
-# define true 1
-# endif /* true */
-
-# if !defined (false)
-# define false 0
-# endif /* false */
-# endif /* _MSC_VER <= 1010 */
-#endif /* _MSC_VER */
+// Define bool out of the std namespace.
+#if (_MSC_VER > 1010)
+#include /**/ <yvals.h>
+#else
+#if !defined (bool)
+#define bool int
+#endif /* bool */
+
+#if !defined (true)
+#define true 1
+#endif /* true */
+
+#if !defined (false)
+#define false 0
+#endif /* false */
+
+#endif /* WIN32 */
/*