diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2023-05-12 22:06:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-12 22:06:29 (GMT) |
commit | b90c922f3f852b51b11de19d73015e3eb64293f4 (patch) | |
tree | 0d5833edfc9fa14c342971d47b7eabe581423ee8 | |
parent | b4c1ca29ccd45c608ff01ce0a4608b1837715573 (diff) | |
download | cpython-b90c922f3f852b51b11de19d73015e3eb64293f4.zip cpython-b90c922f3f852b51b11de19d73015e3eb64293f4.tar.gz cpython-b90c922f3f852b51b11de19d73015e3eb64293f4.tar.bz2 |
[3.11] GH-94841: Fix usage of Py_ALWAYS_INLINE (GH-104439)
-rw-r--r-- | Objects/obmalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c index fae9c81..b9529e4 100644 --- a/Objects/obmalloc.c +++ b/Objects/obmalloc.c @@ -1445,7 +1445,7 @@ static arena_map_bot_t arena_map_root; /* Return a pointer to a bottom tree node, return NULL if it doesn't exist or * it cannot be created */ -static Py_ALWAYS_INLINE arena_map_bot_t * +static inline Py_ALWAYS_INLINE arena_map_bot_t * arena_map_get(block *p, int create) { #ifdef USE_INTERIOR_NODES |