mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 17:23:04 +01:00
Remove conditional compilation - it was raising hell in windows build
This commit is contained in:
parent
e77470c102
commit
fa4354b0f3
@ -1771,12 +1771,10 @@ void MemoryPool::deallocate(void *block)
|
|||||||
MemoryPool& AutoStorage::getAutoMemoryPool() {
|
MemoryPool& AutoStorage::getAutoMemoryPool() {
|
||||||
#ifndef SUPERCLIENT
|
#ifndef SUPERCLIENT
|
||||||
MemoryPool* p = MemoryPool::getContextPool();
|
MemoryPool* p = MemoryPool::getContextPool();
|
||||||
#if defined(EMBEDDED) || (!defined(SUPERSERVER))
|
|
||||||
if (! p)
|
if (! p)
|
||||||
{
|
{
|
||||||
p = getDefaultMemoryPool();
|
p = getDefaultMemoryPool();
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
#else //SUPERCLIENT
|
#else //SUPERCLIENT
|
||||||
MemoryPool* p = getDefaultMemoryPool();
|
MemoryPool* p = getDefaultMemoryPool();
|
||||||
#endif //SUPERCLIENT
|
#endif //SUPERCLIENT
|
||||||
|
Loading…
Reference in New Issue
Block a user