[PATCH] D58571: [libclang] Fix a trivial error introduced in D57946.
Emilio Cobos Álvarez via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 22 20:39:23 PST 2019
emilio created this revision.
emilio added reviewers: Anastasia, arphaman.
Herald added a reviewer: serge-sans-paille.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
The value for CXCursor_ConvergentAttr is not 420. I'm not really sure how easy
it is to test this, and I'm not familiar with the python bindings, just noticed
the error while looking at D57946 <https://reviews.llvm.org/D57946> to write D58570 <https://reviews.llvm.org/D58570>.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D58571
Files:
clang/bindings/python/clang/cindex.py
Index: clang/bindings/python/clang/cindex.py
===================================================================
--- clang/bindings/python/clang/cindex.py
+++ clang/bindings/python/clang/cindex.py
@@ -1342,7 +1342,7 @@
CursorKind.DLLEXPORT_ATTR = CursorKind(418)
CursorKind.DLLIMPORT_ATTR = CursorKind(419)
-CursorKind.CONVERGENT_ATTR = CursorKind(420)
+CursorKind.CONVERGENT_ATTR = CursorKind(438)
###
# Preprocessing
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D58571.188027.patch
Type: text/x-patch
Size: 427 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20190223/dc927dc8/attachment.bin>
More information about the cfe-commits
mailing list