From 8ba3c5e0730236b2c42f4acb55a8fa932b3e7d3b Mon Sep 17 00:00:00 2001 From: emv Date: Mon, 17 Jun 2013 14:30:59 +0400 Subject: [PATCH] 0024030: Undefined reference to `NCollection_IncAllocator::DefaultBlockSize'. --- src/NCollection/NCollection_IncAllocator.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NCollection/NCollection_IncAllocator.cxx b/src/NCollection/NCollection_IncAllocator.cxx index 74ed5ab594..77fc53689f 100755 --- a/src/NCollection/NCollection_IncAllocator.cxx +++ b/src/NCollection/NCollection_IncAllocator.cxx @@ -178,8 +178,9 @@ NCollection_IncAllocator::NCollection_IncAllocator (const size_t theBlockSize) if (IS_DEBUG) Debug_Create(this); #endif + const size_t aDefault = DefaultBlockSize; const size_t aSize = IMEM_SIZE(sizeof(IBlock)) + - IMEM_SIZE((theBlockSize > 2*sizeof(IBlock)) ? theBlockSize : DefaultBlockSize); + IMEM_SIZE((theBlockSize > 2*sizeof(IBlock)) ? theBlockSize : aDefault); IBlock * const aBlock = (IBlock *) malloc (aSize * sizeof(aligned_t)); myFirstBlock = aBlock; mySize = aSize - IMEM_SIZE(sizeof(IBlock));