summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEmilio Cobos Alvarez <emilio@crisal.io>2019-02-25 21:15:34 +0000
committerEmilio Cobos Alvarez <emilio@crisal.io>2019-02-25 21:15:34 +0000
commit76004da1c91205df751e4d46e8b7a0224a00be8c (patch)
tree6231ff795f2901bc74a4d098187d8621d6b9a21a
parent6da94438902e2dcc8ebfa0f8086cf584a54abc80 (diff)
downloadbcm5719-llvm-76004da1c91205df751e4d46e8b7a0224a00be8c.tar.gz
bcm5719-llvm-76004da1c91205df751e4d46e8b7a0224a00be8c.zip
[libclang] Fix a trivial error introduced in D57946.
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 to write D58570. Differential Revision: https://reviews.llvm.org/D58571 llvm-svn: 354823
-rw-r--r--clang/bindings/python/clang/cindex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/bindings/python/clang/cindex.py b/clang/bindings/python/clang/cindex.py
index 8630c59c135..50e6f0e5b64 100644
--- a/clang/bindings/python/clang/cindex.py
+++ b/clang/bindings/python/clang/cindex.py
@@ -1342,7 +1342,7 @@ CursorKind.VISIBILITY_ATTR = CursorKind(417)
CursorKind.DLLEXPORT_ATTR = CursorKind(418)
CursorKind.DLLIMPORT_ATTR = CursorKind(419)
-CursorKind.CONVERGENT_ATTR = CursorKind(420)
+CursorKind.CONVERGENT_ATTR = CursorKind(438)
###
# Preprocessing
OpenPOWER on IntegriCloud