8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 18:43:02 +01:00

Unused inline function

This commit is contained in:
mapopa 2011-05-27 09:00:25 +00:00
parent 74cb8e6ead
commit 107f789676

View File

@ -125,11 +125,6 @@ inline MemoryBlock* next_block(MemoryBlock* block)
return (MemoryBlock*)((char*)block + block->mbk_small.mbk_length + MEM_ALIGN(sizeof(MemoryBlock))); return (MemoryBlock*)((char*)block + block->mbk_small.mbk_length + MEM_ALIGN(sizeof(MemoryBlock)));
} }
inline size_t FB_MAX(size_t M, size_t N)
{
return M > N ? M : N;
}
// Size in bytes, must be aligned according to ALLOC_ALIGNMENT // Size in bytes, must be aligned according to ALLOC_ALIGNMENT
// It should also be a multiply of page size // It should also be a multiply of page size
const size_t OS_EXTENT_SIZE = 65536; const size_t OS_EXTENT_SIZE = 65536;