Fix space being prepended to randomize type

This commit is contained in:
Jbleezy 2024-10-06 12:31:45 -07:00
parent 1774001598
commit ff02491e08

View File

@ -372,7 +372,7 @@ namespace
{
assert(enumValueCount <= 32u);
std::ostringstream ss;
auto first = false;
auto first = true;
for (auto i = 0u; i < enumValueCount; i++)
{
const auto flagValue = 1u << i;