From 52bb2a06361d1d0d51809a2ac06e270e8cf05a9e Mon Sep 17 00:00:00 2001 From: Dmitri Gribenko Date: Sun, 21 Apr 2013 18:35:51 +0000 Subject: [PATCH] Fix return type of isBitfield in the binding definition MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Patch by Loïc Jaquemet. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@179984 91177308-0d34-0410-b5e6-96231b3b80d8 --- bindings/python/clang/cindex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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], -- 2.50.1