From 523322f241f0d67a846490af2621c06557c1c2bc Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 12 Oct 2025 01:12:49 +0000 Subject: [PATCH] Cleanup: remove unused Python operator defines --- source/blender/python/intern/bpy_operator.hh | 8 -------- 1 file changed, 8 deletions(-) diff --git a/source/blender/python/intern/bpy_operator.hh b/source/blender/python/intern/bpy_operator.hh index dbfb13a72b0..cf7965b0688 100644 --- a/source/blender/python/intern/bpy_operator.hh +++ b/source/blender/python/intern/bpy_operator.hh @@ -10,12 +10,4 @@ #include -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();