We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab93040 commit 5ef2af6Copy full SHA for 5ef2af6
cxxheaderparser/lexer.py
@@ -100,6 +100,7 @@ class PlyLexer:
100
"enum",
101
"explicit",
102
"export",
103
+ "__extension__",
104
"extern",
105
"false",
106
"final",
cxxheaderparser/parser.py
@@ -302,6 +302,7 @@ def parse(self) -> None:
302
] = {
303
"__attribute__": self._consume_gcc_attribute,
304
"__declspec": self._consume_declspec,
305
+ "__extension__": lambda _1, _2: None,
306
"alignas": self._consume_attribute_specifier_seq,
307
"extern": self._parse_extern,
308
"friend": self._parse_friend_decl,
0 commit comments