From: Argyrios Kyrtzidis Date: Wed, 25 Sep 2013 00:14:43 +0000 (+0000) Subject: [libclang] python: fix return type of clang_Type_getSizeOf(). X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dd9e2cb92274c8fea6b2d2acdd153c046d0a3888;p=clang [libclang] python: fix return type of clang_Type_getSizeOf(). Patch by Loïc Jaquemet! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@191346 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/bindings/python/clang/cindex.py b/bindings/python/clang/cindex.py index f3e230e1b2..fc32394a3f 100644 --- a/bindings/python/clang/cindex.py +++ b/bindings/python/clang/cindex.py @@ -3128,7 +3128,7 @@ functionList = [ ("clang_Type_getSizeOf", [Type], - c_ulonglong), + c_longlong), ] class LibclangError(Exception):