1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Template fix

This commit is contained in:
Brian Fiete 2024-12-29 15:12:02 -08:00
parent e288fca943
commit 9b8c29b803

View file

@ -370,7 +370,7 @@ protected:
void Grow(intptr newSize)
{
T* newVals = TAlloc::allocate<T>(newSize);
T* newVals = TAlloc::template allocate<T>(newSize);
if (this->mVals != NULL)
{
if (this->mSize > 0)
@ -707,7 +707,7 @@ class DequeImpl<T, TAlloc, true> : public DequeBase<T, TAlloc>
protected:
void Grow(intptr newSize)
{
T* newVals = TAlloc::allocate<T>(newSize);
T* newVals = TAlloc::template allocate<T>(newSize);
if (this->mVals != NULL)
{
if (this->mSize > 0)