diff options
| author | Sergey Kalinichev <kalinichev.so.0@gmail.com> | 2015-11-15 13:10:10 +0000 |
|---|---|---|
| committer | Sergey Kalinichev <kalinichev.so.0@gmail.com> | 2015-11-15 13:10:10 +0000 |
| commit | c015120b535e8090d9cd836f870e74d21f917807 (patch) | |
| tree | 5107994dce3f79a19e8f58cd972d243b5ad71803 /clang/bindings/python | |
| parent | 43ed98b9dd887b01542183f84b3c6f900e12a334 (diff) | |
| download | bcm5719-llvm-c015120b535e8090d9cd836f870e74d21f917807.tar.gz bcm5719-llvm-c015120b535e8090d9cd836f870e74d21f917807.zip | |
[libclang] Expose AutoType
Expose the AutoType via LibClang and python bindings
Differential Revision: http://reviews.llvm.org/D13000
llvm-svn: 253165
Diffstat (limited to 'clang/bindings/python')
| -rw-r--r-- | clang/bindings/python/clang/cindex.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/bindings/python/clang/cindex.py b/clang/bindings/python/clang/cindex.py index 49b2fd873f9..d37048b8f5e 100644 --- a/clang/bindings/python/clang/cindex.py +++ b/clang/bindings/python/clang/cindex.py @@ -1699,6 +1699,7 @@ TypeKind.INCOMPLETEARRAY = TypeKind(114) TypeKind.VARIABLEARRAY = TypeKind(115) TypeKind.DEPENDENTSIZEDARRAY = TypeKind(116) TypeKind.MEMBERPOINTER = TypeKind(117) +TypeKind.AUTO = TypeKind(118) class RefQualifierKind(BaseEnumeration): """Describes a specific ref-qualifier of a type.""" |

