Added a missing enumeration.

---
 bindings/python/clang/cindex.py |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/bindings/python/clang/cindex.py b/bindings/python/clang/cindex.py
index 38f117b..37ff5ff 100644
--- a/bindings/python/clang/cindex.py
+++ b/bindings/python/clang/cindex.py
@@ -1094,16 +1094,17 @@ TypeKind.RVALUEREFERENCE = TypeKind(104)
 TypeKind.RECORD = TypeKind(105)
 TypeKind.ENUM = TypeKind(106)
 TypeKind.TYPEDEF = TypeKind(107)
 TypeKind.OBJCINTERFACE = TypeKind(108)
 TypeKind.OBJCOBJECTPOINTER = TypeKind(109)
 TypeKind.FUNCTIONNOPROTO = TypeKind(110)
 TypeKind.FUNCTIONPROTO = TypeKind(111)
 TypeKind.CONSTANTARRAY = TypeKind(112)
+TypeKind.VECTOR = TypeKind(113)
 
 class Type(Structure):
     """
     The type of an element in the abstract syntax tree.
     """
     _fields_ = [("_kind_id", c_int), ("data", c_void_p * 2)]
 
     @property
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to