summaryrefslogtreecommitdiff
path: root/giscanner/sourcescanner.h
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2008-08-31 16:10:18 +0000
committerJohan Dahlin <johan@src.gnome.org>2008-08-31 16:10:18 +0000
commit0745eb0c9920523471afedf058de4fdee573e1b1 (patch)
treedbacde2bccd57d4b9c80ea98c129f7979f69542a /giscanner/sourcescanner.h
parenta80f4a68ea3d66dd87732da00ee3cd3c6e42b1de (diff)
downloadgobject-introspection-0745eb0c9920523471afedf058de4fdee573e1b1.tar.gz
Parse GCC extensions in the parser instead of just undeffing them in the
2008-08-31 Johan Dahlin <johan@gnome.org> * giscanner/scannerlexer.l: * giscanner/scannerparser.y: * giscanner/sourcescanner.h: * giscanner/sourcescanner.py: Parse GCC extensions in the parser instead of just undeffing them in the pre-processor. svn path=/trunk/; revision=553
Diffstat (limited to 'giscanner/sourcescanner.h')
-rw-r--r--giscanner/sourcescanner.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/giscanner/sourcescanner.h b/giscanner/sourcescanner.h
index 93fa450e..171a995a 100644
--- a/giscanner/sourcescanner.h
+++ b/giscanner/sourcescanner.h
@@ -75,7 +75,8 @@ typedef enum
TYPE_QUALIFIER_NONE = 0,
TYPE_QUALIFIER_CONST = 1 << 1,
TYPE_QUALIFIER_RESTRICT = 1 << 2,
- TYPE_QUALIFIER_VOLATILE = 1 << 3
+ TYPE_QUALIFIER_VOLATILE = 1 << 3,
+ TYPE_QUALIFIER_EXTENSION = 1 << 4
} TypeQualifier;
typedef enum