blob: ccb951dbb87dbc29844f89f291860a2cd827b577 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
#include "CommonDataStructuresPch.h"
#include "Common/UInt32Math.h"
#include "DataStructures/GrowingArray.h"
namespace JsUtil
{
template <>
GrowingUint32HeapArray* GrowingArray<uint32, HeapAllocator>::Create(uint32 _length)
{
return HeapNew(GrowingUint32HeapArray, &HeapAllocator::Instance, _length);
}
}