From efa1cc76d85a9789e53c755ffcf3c1347462e7d8 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Fri, 4 Nov 2016 06:50:59 +0000 Subject: [PATCH] [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 --- bindings/python/clang/cindex.py | 2 ++ 1 file changed, 2 insertions(+) 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) -- 2.40.0