1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-21 12:49:10 +00:00

Fix pnUtils for clang.

This commit is contained in:
Darryl Pogue
2012-01-29 17:21:07 -08:00
parent 75a3701f3e
commit f58161ace0
4 changed files with 23 additions and 22 deletions

View File

@ -823,7 +823,7 @@ void TArray<T,C>::AdjustSizeChunked (unsigned newAlloc, unsigned newCount) {
// Process growing the allocation
else
newAlloc = CalcAllocGrowth(newAlloc, this->m_alloc, &this->m_chunkSize);
newAlloc = this->CalcAllocGrowth(newAlloc, this->m_alloc, &this->m_chunkSize);
// Perform the allocation
this->AdjustSize(newAlloc, newCount);