From 51d7e4e762372c09d5f2f4bbdee5bf3daa21ee5c Mon Sep 17 00:00:00 2001 From: David Webster Date: Thu, 21 Oct 1999 13:44:31 +0000 Subject: [PATCH] Support different for Visualage Versions git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4104 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/defs.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/wx/defs.h b/include/wx/defs.h index 9669936041..d638ba2db3 100644 --- a/include/wx/defs.h +++ b/include/wx/defs.h @@ -274,7 +274,9 @@ // Cygwin supports bool #define HAVE_BOOL #elif defined(__VISAGECPP__) - typedef unsigned long bool; + #if __IBMCPP__ < 400 + typedef unsigned long bool; + #endif #define HAVE_BOOL #endif // compilers #endif // HAVE_BOOL