preliminary Win32 support added
[cparser] / ast_t.h
diff --git a/ast_t.h b/ast_t.h
index 66cddcc..321915e 100644 (file)
--- a/ast_t.h
+++ b/ast_t.h
@@ -12,7 +12,8 @@
 extern struct obstack ast_obstack;
 
 typedef enum {
-       EXPR_INVALID = 0,
+       EXPR_UNKNOWN = 0,
+       EXPR_INVALID,
        EXPR_REFERENCE,
        EXPR_CONST,
        EXPR_STRING_LITERAL,
@@ -226,6 +227,7 @@ struct declaration_t {
        unsigned char       namespace;
        unsigned char       storage_class;
        unsigned int        address_taken : 1;
+       unsigned int        is_inline     : 1;
        type_t             *type;
        symbol_t           *symbol;
        source_position_t   source_position;