From cd6525421f0ff44345f31316a06c81cc8a889484 Mon Sep 17 00:00:00 2001 From: Eric Snow Date: Mon, 11 Sep 2017 23:07:25 +0000 Subject: [PATCH] Always provide serialno. --- Include/internal/mem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/internal/mem.h b/Include/internal/mem.h index 1624f378f671c8..f3a8f56e8055bc 100644 --- a/Include/internal/mem.h +++ b/Include/internal/mem.h @@ -40,8 +40,8 @@ struct _pymem_runtime_state { size_t ntimes_arena_allocated; poolp usedpools[MAX_POOLS]; Py_ssize_t num_allocated_blocks; - size_t serialno; /* incremented on each debug {m,re}alloc */ #endif /* WITH_PYMALLOC */ + size_t serialno; /* incremented on each debug {m,re}alloc */ }; PyAPI_FUNC(void) _PyMem_Initialize(struct _pymem_runtime_state *);