diff options
author | Emilio Cobos Alvarez <emilio@crisal.io> | 2019-02-25 21:15:34 +0000 |
---|---|---|
committer | Emilio Cobos Alvarez <emilio@crisal.io> | 2019-02-25 21:15:34 +0000 |
commit | a3ad1e50faf68e0fd553b648e95a6d7797852fb7 (patch) | |
tree | 59ecf41aa616cb95608bd924d97c79c2fdba7a78 /bindings | |
parent | 01e162c2965d114aa4e21c91b6341454210ad8fb (diff) | |
download | clang-a3ad1e50faf68e0fd553b648e95a6d7797852fb7.tar.gz |
[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
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@354823 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings')
-rw-r--r-- | bindings/python/clang/cindex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/clang/cindex.py b/bindings/python/clang/cindex.py index 8630c59c13..50e6f0e5b6 100644 --- a/bindings/python/clang/cindex.py +++ b/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 |