From d5b70f5bacb27f96cbdf7f304d88fe8ede2a72c9 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 18 Nov 1990 17:27:10 +0000 Subject: [PATCH] Add UNREF macro if not tracing refs (see UNREF function in object.c). --- Include/object.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Include/object.h b/Include/object.h index 7147339923e..dcfdfb4cf1e 100644 --- a/Include/object.h +++ b/Include/object.h @@ -191,6 +191,7 @@ environment the global variable trick is not safe.) #ifndef TRACE_REFS #define DELREF(op) (*(op)->ob_type->tp_dealloc)((object *)(op)) +#define UNREF(op) /*empty*/ #endif #ifdef REF_DEBUG