Cleanup: remove unused Python operator defines

This commit is contained in:
Campbell Barton
2025-10-12 01:12:49 +00:00
parent 729251ebac
commit 523322f241

View File

@@ -10,12 +10,4 @@
#include <Python.h>
extern PyTypeObject pyop_base_Type;
#define BPy_OperatorBase_Check(v) (PyObject_TypeCheck(v, &pyop_base_Type))
struct BPy_OperatorBase {
PyObject_HEAD /* Required Python macro. */
};
[[nodiscard]] PyObject *BPY_operator_module();