summaryrefslogtreecommitdiffstats
path: root/include/clang-c
diff options
context:
space:
mode:
authorSergey Kalinichev <kalinichev.so.0@gmail.com>2015-11-15 13:10:10 +0000
committerSergey Kalinichev <kalinichev.so.0@gmail.com>2015-11-15 13:10:10 +0000
commit93622ca0d40618dc7fa94b910547366425e6f1ef (patch)
tree3ecd57cd3f53cd007a03e790b13db26c382d04e5 /include/clang-c
parent1a14829860c08f75620c115011c1f68ab2a918ab (diff)
[libclang] Expose AutoType
Expose the AutoType via LibClang and python bindings Differential Revision: http://reviews.llvm.org/D13000 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@253165 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c')
-rw-r--r--include/clang-c/Index.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index fd8fb130f8..8896dc258b 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -2860,7 +2860,8 @@ enum CXTypeKind {
CXType_IncompleteArray = 114,
CXType_VariableArray = 115,
CXType_DependentSizedArray = 116,
- CXType_MemberPointer = 117
+ CXType_MemberPointer = 117,
+ CXType_Auto = 118
};
/**