mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2026-09-03 20:52:55 -05:00
Fix CPP domain modifiers: short can be unsigned and signed, but not short.
This commit is contained in:
@@ -444,9 +444,9 @@ class DefinitionParser(object):
|
||||
'mutable': None,
|
||||
'const': None,
|
||||
'typename': None,
|
||||
'unsigned': set(('char', 'int', 'long')),
|
||||
'signed': set(('char', 'int', 'long')),
|
||||
'short': set(('int', 'short')),
|
||||
'unsigned': set(('char', 'short', 'int', 'long')),
|
||||
'signed': set(('char', 'short', 'int', 'long')),
|
||||
'short': set(('int',)),
|
||||
'long': set(('int', 'long', 'double'))
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user