From: Olivier Goffart Date: Fri, 4 Nov 2016 06:50:59 +0000 (+0000) Subject: [python bindings] Expose CXCursor_FriendDecl as CursorKind.FRIEND_DECL X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=efa1cc76d85a9789e53c755ffcf3c1347462e7d8;p=clang [python bindings] Expose CXCursor_FriendDecl as CursorKind.FRIEND_DECL CXCursor_FriendDecl was added in r285984 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@285986 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/bindings/python/clang/cindex.py b/bindings/python/clang/cindex.py index 7353e86e43..c22d2510c6 100644 --- a/bindings/python/clang/cindex.py +++ b/bindings/python/clang/cindex.py @@ -1317,6 +1317,8 @@ CursorKind.MODULE_IMPORT_DECL = CursorKind(600) CursorKind.TYPE_ALIAS_TEMPLATE_DECL = CursorKind(601) # A static_assert or _Static_assert node CursorKind.STATIC_ASSERT = CursorKind(602) +# A friend declaration +CursorKind.FRIEND_DECL = CursorKind(603) # A code completion overload candidate. CursorKind.OVERLOAD_CANDIDATE = CursorKind(700)