]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/private/flagscheck.h
Compilation fix for non-MSW: don't use ProcessCommand().
[wxWidgets.git] / include / wx / private / flagscheck.h
index 751278eedfbc7269e1d5e41df05d2e76b6427233..22d2fce7adf4e8ebe6696be937e7782d5f62c4b2 100644 (file)
 #define _WX_PRIVATE_FLAGSCHECK_H_
 
 #include "wx/debug.h"
+
+// IBM xlC 8 can't parse the template syntax
+#if !defined(__IBMCPP__)
+
 #include "wx/meta/if.h"
 
 namespace wxPrivate
@@ -36,7 +40,7 @@ namespace wxPrivate
 //
 // NB: If any of this doesn't compile with your compiler and would be too
 //     hard to make work, it's probably best to disable this code and replace
-//     the macros below with empty stubs, this isn't anything criticial.
+//     the macros below with empty stubs, this isn't anything critical.
 
 template<int val> struct FlagsHaveConflictingValues
 {
@@ -101,6 +105,10 @@ template<int all, int add> struct SafelyAddToMask
 #define wxADD_FLAG(f, others) \
     ::wxPrivate::SafelyAddToMask<f, others>::value
 
+#else
+    #define wxADD_FLAG(f, others) (f | others)
+#endif
+
 // Checks if flags value 'f' is within the mask of allowed values
 #define wxASSERT_VALID_FLAGS(f, mask)                   \
     wxASSERT_MSG( (f & mask) == f,                      \