main: rework preprocessor invocation
[cparser] / lang_features.h
index 65ed32e..7bff32e 100644 (file)
 typedef enum lang_features_t {
        _C89  = 1U << 0,
        _C99  = 1U << 1,
-       _CXX  = 1U << 2,
-       _GNUC = 1U << 3,
-       _MS   = 1U << 4,
+       _C11  = 1U << 2,
+       _CXX  = 1U << 3,
+       _GNUC = 1U << 4,
+       _MS   = 1U << 5,
        _ALL  = 0xFF
 } lang_features_t;