aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken/basewrapper.h
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2010-11-10 15:30:08 -0200
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:08:57 -0300
commit43c16539246a1ac6abc12b141ab32b5932e8c51e (patch)
treed70519cad37b4c1289131fbc265dd07c932bd955 /libshiboken/basewrapper.h
parent899f9c2ccfc6967867f6d5f1cad925011a2f756b (diff)
Remove macro Shiboken_TypeCheck
Diffstat (limited to 'libshiboken/basewrapper.h')
-rw-r--r--libshiboken/basewrapper.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/libshiboken/basewrapper.h b/libshiboken/basewrapper.h
index 40d7b22e4..aeed89178 100644
--- a/libshiboken/basewrapper.h
+++ b/libshiboken/basewrapper.h
@@ -162,11 +162,6 @@ LIBSHIBOKEN_API void* getTypeUserData(SbkObject* wrapper);
LIBSHIBOKEN_API bool canCallConstructor(PyTypeObject* myType, PyTypeObject* ctorType);
/**
- * Shiboken_TypeCheck macro performs a type check using the values registered with SbkType<>() template.
- */
-#define Shiboken_TypeCheck(pyobj, type) (PyObject_TypeCheck(pyobj, SbkType<type>()))
-
-/**
* Increments the reference count of the referred Python object.
* A previous Python object in the same position identified by the 'key' parameter
* will have its reference counter decremented automatically when replaced.