summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2023-05-12 21:26:54 (GMT)
committerGitHub <noreply@github.com>2023-05-12 21:26:54 (GMT)
commita10b026f0fdceac42c4b928917894d77da996555 (patch)
tree5e69f2c9dcb65a0e37db08bdebaee5c1c47f36eb /Objects
parent79b17f2cf0e1a2688bd91df02744f461835c4253 (diff)
downloadcpython-a10b026f0fdceac42c4b928917894d77da996555.zip
cpython-a10b026f0fdceac42c4b928917894d77da996555.tar.gz
cpython-a10b026f0fdceac42c4b928917894d77da996555.tar.bz2
GH-94841: Fix usage of Py_ALWAYS_INLINE (GH-104409)
Diffstat (limited to 'Objects')
-rw-r--r--Objects/obmalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c
index de62aeb..090129f 100644
--- a/Objects/obmalloc.c
+++ b/Objects/obmalloc.c
@@ -882,7 +882,7 @@ _Py_GetGlobalAllocatedBlocks(void)
/* 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(OMState *state, pymem_block *p, int create)
{
#ifdef USE_INTERIOR_NODES