]> granicus.if.org Git - clang/commitdiff
[libclang] python: fix return type of clang_Type_getSizeOf().
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>
Wed, 25 Sep 2013 00:14:43 +0000 (00:14 +0000)
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>
Wed, 25 Sep 2013 00:14:43 +0000 (00:14 +0000)
Patch by Loïc Jaquemet!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@191346 91177308-0d34-0410-b5e6-96231b3b80d8

bindings/python/clang/cindex.py

index f3e230e1b254b07c457457847a0971868fbe3995..fc32394a3f6bd7d71248ecefffb6b114285612d2 100644 (file)
@@ -3128,7 +3128,7 @@ functionList = [
 
   ("clang_Type_getSizeOf",
    [Type],
-   c_ulonglong),
+   c_longlong),
 ]
 
 class LibclangError(Exception):