diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2013-04-21 18:35:51 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2013-04-21 18:35:51 +0000 |
commit | 52bb2a06361d1d0d51809a2ac06e270e8cf05a9e (patch) | |
tree | b3668d5dbe6787ee0b06b7603a971531849be72e /bindings | |
parent | c7e2a4e08a14ff04de41146c418b71cd577c0a0d (diff) |
Fix return type of isBitfield in the binding definition
Patch by Loïc Jaquemet.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@179984 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 36761bd859..880a1502a4 100644 --- a/bindings/python/clang/cindex.py +++ b/bindings/python/clang/cindex.py @@ -3075,7 +3075,7 @@ functionList = [ ("clang_Cursor_isBitField", [Cursor], - c_long), + bool), ("clang_Type_getAlignOf", [Type], |