aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/libshiboken/autodecref.h
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken2/libshiboken/autodecref.h')
-rw-r--r--sources/shiboken2/libshiboken/autodecref.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sources/shiboken2/libshiboken/autodecref.h b/sources/shiboken2/libshiboken/autodecref.h
index 1f3f41eab..7b6aa47da 100644
--- a/sources/shiboken2/libshiboken/autodecref.h
+++ b/sources/shiboken2/libshiboken/autodecref.h
@@ -79,7 +79,9 @@ public:
/// Returns the pointer of the Python object being held.
inline PyObject* object() { return m_pyObj; }
inline operator PyObject*() { return m_pyObj; }
+#ifndef Py_LIMITED_API
inline operator PyTupleObject*() { return reinterpret_cast<PyTupleObject*>(m_pyObj); }
+#endif
inline operator bool() const { return m_pyObj != 0; }
inline PyObject* operator->() { return m_pyObj; }