benchmarks/uuid_v4_benchmark.cpp: Fixed a minor issue in using 'delete[]'

This commit is contained in:
Mario Emmenlauer 2022-07-18 11:44:46 +02:00
parent 8fffbb16be
commit 938e5753c8

View File

@ -92,7 +92,7 @@ static void UUIDPrettyCharArray(benchmark::State& state) {
benchmark::ClobberMemory();
LOOP_END
}
delete pretty;
delete[] pretty;
}
BENCHMARK(UUIDPrettyCharArray);