Skip to content

Commit b90c922

Browse files
authored
[3.11] GH-94841: Fix usage of Py_ALWAYS_INLINE (GH-104439)
1 parent b4c1ca2 commit b90c922

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/obmalloc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1445,7 +1445,7 @@ static arena_map_bot_t arena_map_root;
14451445

14461446
/* Return a pointer to a bottom tree node, return NULL if it doesn't exist or
14471447
* it cannot be created */
1448-
static Py_ALWAYS_INLINE arena_map_bot_t *
1448+
static inline Py_ALWAYS_INLINE arena_map_bot_t *
14491449
arena_map_get(block *p, int create)
14501450
{
14511451
#ifdef USE_INTERIOR_NODES

0 commit comments

Comments
 (0)