diff options
Diffstat (limited to 'src/include/utils/palloc.h')
-rw-r--r-- | src/include/utils/palloc.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/include/utils/palloc.h b/src/include/utils/palloc.h index e56f5014a3d..f2bcd00b4cb 100644 --- a/src/include/utils/palloc.h +++ b/src/include/utils/palloc.h @@ -98,10 +98,6 @@ extern void *MemoryContextAllocHuge(MemoryContext context, Size size); extern void *repalloc_huge(void *pointer, Size size); /* - * MemoryContextSwitchTo can't be a macro in standard C compilers. - * But we can make it an inline function if the compiler supports it. - * See STATIC_IF_INLINE in c.h. - * * Although this header file is nominally backend-only, certain frontend * programs like pg_controldata include it via postgres.h. For some compilers * it's necessary to hide the inline definition of MemoryContextSwitchTo in @@ -109,11 +105,7 @@ extern void *repalloc_huge(void *pointer, Size size); */ #ifndef FRONTEND -#ifndef PG_USE_INLINE -extern MemoryContext MemoryContextSwitchTo(MemoryContext context); -#endif /* !PG_USE_INLINE */ -#if defined(PG_USE_INLINE) || defined(MCXT_INCLUDE_DEFINITIONS) -STATIC_IF_INLINE MemoryContext +static inline MemoryContext MemoryContextSwitchTo(MemoryContext context) { MemoryContext old = CurrentMemoryContext; @@ -121,7 +113,6 @@ MemoryContextSwitchTo(MemoryContext context) CurrentMemoryContext = context; return old; } -#endif /* PG_USE_INLINE || MCXT_INCLUDE_DEFINITIONS */ #endif /* FRONTEND */ /* Registration of memory context reset/delete callbacks */ |