Use std::make_unique instead of new for arrays

This commit is contained in:
Hielke Morsink 2021-08-20 23:42:03 +02:00
parent 6011478590
commit cef26400cf
3 changed files with 3 additions and 3 deletions

View File

@ -185,7 +185,7 @@ bool SpriteFile::Save(const utf8* path)
static bool SpriteImageExport(const rct_g1_element& spriteElement, const char* outPath)
{
const auto pixelBufferSize = spriteElement.width * spriteElement.height;
std::unique_ptr<uint8_t[]> pixelBuffer(new uint8_t[pixelBufferSize]);
auto pixelBuffer = std::make_unique<uint8_t[]>(pixelBufferSize);
auto pixels = pixelBuffer.get();
std::fill_n(pixels, pixelBufferSize, 0x00);

View File

@ -284,7 +284,7 @@ template<> struct DataSerializerTraits_t<OpenRCT2::MemoryStream>
uint32_t length = 0;
s.decode(stream, length);
std::unique_ptr<uint8_t[]> buf(new uint8_t[length]);
auto buf = std::make_unique<uint8_t[]>(length);
stream->Read(buf.get(), length);
val.Write(buf.get(), length);

View File

@ -65,7 +65,7 @@ std::shared_ptr<SawyerChunk> SawyerChunkReader::ReadChunk()
case CHUNK_ENCODING_RLECOMPRESSED:
case CHUNK_ENCODING_ROTATE:
{
std::unique_ptr<uint8_t[]> compressedData(new uint8_t[header.length]);
auto compressedData = std::make_unique<uint8_t[]>(header.length);
if (_stream->TryRead(compressedData.get(), header.length) != header.length)
{
throw SawyerChunkException(EXCEPTION_MSG_CORRUPT_CHUNK_SIZE);