From: Tobias Grosser Date: Sun, 5 Feb 2012 11:42:14 +0000 (+0000) Subject: [clang.py] add TypeKind.VECTOR X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=250d217586b0dafcb0be343a80da31c956258e2e;p=clang [clang.py] add TypeKind.VECTOR Added a missing enumeration. Contributed by: Gregory Szorc git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@149828 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/bindings/python/clang/cindex.py b/bindings/python/clang/cindex.py index 38f117bb1d..37ff5ffd4e 100644 --- a/bindings/python/clang/cindex.py +++ b/bindings/python/clang/cindex.py @@ -1099,6 +1099,7 @@ TypeKind.OBJCOBJECTPOINTER = TypeKind(109) TypeKind.FUNCTIONNOPROTO = TypeKind(110) TypeKind.FUNCTIONPROTO = TypeKind(111) TypeKind.CONSTANTARRAY = TypeKind(112) +TypeKind.VECTOR = TypeKind(113) class Type(Structure): """