- Fixed more GCC/Clang warnings.
This commit is contained in:
parent
ab03b016e9
commit
6eff1cb8be
6 changed files with 21 additions and 9 deletions
|
|
@ -72,11 +72,11 @@ static inline void *RoundPointer(void *ptr)
|
|||
//
|
||||
//==========================================================================
|
||||
|
||||
FMemArena::FMemArena(int bs)
|
||||
FMemArena::FMemArena(size_t blocksize)
|
||||
{
|
||||
TopBlock = NULL;
|
||||
FreeBlocks = NULL;
|
||||
BlockSize = bs;
|
||||
BlockSize = blocksize;
|
||||
}
|
||||
|
||||
//==========================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue