Add "struct" to C++ modifiers.

This commit is contained in:
Georg Brandl 2014-01-19 10:39:23 +01:00
parent b7a639a22b
commit 644c87c9d5

View File

@ -537,6 +537,7 @@ class DefinitionParser(object):
'mutable': None, 'mutable': None,
'const': None, 'const': None,
'typename': None, 'typename': None,
'struct': None,
'unsigned': set(('char', 'short', 'int', 'long')), 'unsigned': set(('char', 'short', 'int', 'long')),
'signed': set(('char', 'short', 'int', 'long')), 'signed': set(('char', 'short', 'int', 'long')),
'short': set(('int',)), 'short': set(('int',)),