summaryrefslogtreecommitdiffstats
path: root/bindings
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2013-05-17 18:38:35 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2013-05-17 18:38:35 +0000
commitc965f76e02d536d875b1e9e3ea96f39452c6bfa2 (patch)
tree3f2ce3bea6e30bf5647cd9d2df0a6f86eab842ee /bindings
parente4bb74973cfdf0c82aca2088ccfae5e61727c846 (diff)
libclang: add a function to check whether a member function is pure virtual
Patch by Seth Fowler. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@182139 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings')
-rw-r--r--bindings/python/clang/cindex.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bindings/python/clang/cindex.py b/bindings/python/clang/cindex.py
index 880a1502a4..f2e752aed0 100644
--- a/bindings/python/clang/cindex.py
+++ b/bindings/python/clang/cindex.py
@@ -2590,6 +2590,10 @@ functionList = [
[Index, c_char_p],
c_object_p),
+ ("clang_CXXMethod_isPureVirtual",
+ [Cursor],
+ bool),
+
("clang_CXXMethod_isStatic",
[Cursor],
bool),