mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 23:02:20 +00:00
Bug 1212027 - part 2 - add a C++ AST type for 'auto'; r=jld
This type will come in handy when we have to add iteration over hashtables, since it would be a pain to write out the iterator type.
This commit is contained in:
parent
278e9ff8b1
commit
8065270d99
@ -337,6 +337,7 @@ Type.UINT32PTR = Type('uint32_t', ptr=1)
|
||||
Type.SIZE = Type('size_t')
|
||||
Type.VOID = Type('void')
|
||||
Type.VOIDPTR = Type('void', ptr=1)
|
||||
Type.AUTO = Type('auto')
|
||||
|
||||
class TypeArray(Node):
|
||||
def __init__(self, basetype, nmemb):
|
||||
|
Loading…
Reference in New Issue
Block a user