Missing semicolon.

This commit is contained in:
Tom Lally 2022-09-02 18:49:12 +01:00
parent caaa5ad2c3
commit 3cff628a62

View file

@ -58,7 +58,7 @@ void QueryCoreTimes(uint32 count, ProcessorTime out[])
}
else
{
for (auto i = 0; i < count; ++i) out[i] = { }
for (auto i = 0; i < count; ++i) out[i] = { };
}
}