mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Merge pull request #169 from AsamK/add_missing_return
Add missing return
This commit is contained in:
commit
f9e61ddfa5
@ -161,9 +161,11 @@ void FixedAllocator::deallocate(void *p)
|
||||
uint32_t FixedAllocator::currentSize() const
|
||||
{
|
||||
uint32_t res = 0 ;
|
||||
|
||||
|
||||
for(uint32_t i=0;i<_chunks.size();++i)
|
||||
res += (_numBlocks - _chunks[i]->_blocksAvailable) * _blockSize ;
|
||||
res += (_numBlocks - _chunks[i]->_blocksAvailable) * _blockSize ;
|
||||
|
||||
return res ;
|
||||
}
|
||||
void FixedAllocator::printStatistics() const
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user