// Memory context cache functions
static void PROJ4SRSCacheInit(MemoryContext context);
static void PROJ4SRSCacheDelete(MemoryContext context);
+#ifdef MEMORY_CONTEXT_CHECKING
static void PROJ4SRSCacheCheck(MemoryContext context);
+#endif
// Memory context definition must match the current version of PostgreSQL
DeletePJHashEntry(context);
}
+#ifdef MEMORY_CONTEXT_CHECKING
static void
PROJ4SRSCacheCheck(MemoryContext context)
{
// Do nothing - stub required for when PostgreSQL is compiled with MEMORY_CONTEXT_CHECKING defined
}
+#endif
//