gh-112867: fix for WITH_PYMALLOC_RADIX_TREE=0 (GH-112885)
The _obmalloc_usage structure is only defined if the obmalloc radix tree
is enabled.
(cherry picked from commit
890ce430d94b0b2bccc92a8472b1e1030b4faeb8)
Co-authored-by: Neil Schemenauer <nas-github@arctrix.com>
struct _obmalloc_state {
struct _obmalloc_pools pools;
struct _obmalloc_mgmt mgmt;
+#if WITH_PYMALLOC_RADIX_TREE
struct _obmalloc_usage usage;
+#endif
};
--- /dev/null
+Fix the build for the case that WITH_PYMALLOC_RADIX_TREE=0 set.