projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5966677
)
[python bindings] Expose CXCursor_FriendDecl as CursorKind.FRIEND_DECL
author
Olivier Goffart
<ogoffart@woboq.com>
Fri, 4 Nov 2016 06:50:59 +0000
(06:50 +0000)
committer
Olivier Goffart
<ogoffart@woboq.com>
Fri, 4 Nov 2016 06:50:59 +0000
(06:50 +0000)
CXCursor_FriendDecl was added in r285984
llvm-svn: 285986
clang/bindings/python/clang/cindex.py
patch
|
blob
|
history
diff --git
a/clang/bindings/python/clang/cindex.py
b/clang/bindings/python/clang/cindex.py
index 7353e86e4310d057d10d887a75982ac968c5e465..c22d2510c62cdf23454027fbb00d82b789d58fd9 100644
(file)
--- a/
clang/bindings/python/clang/cindex.py
+++ b/
clang/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)