- copied constexpr declarations plus a few fixed in utility code and fixed a few places where this triggered a compile error now.

This commit is contained in:
Christoph Oelckers 2020-09-27 08:36:30 +02:00
commit db895b43b2
9 changed files with 49 additions and 28 deletions

View file

@ -249,7 +249,7 @@ const char *MakeUTF8(const char *outline, int *numchars)
UTF8String.Push(encode[i]);
}
}
if (numchars) *numchars++;
if (numchars) (*numchars)++;
}
UTF8String.Push(0);
return UTF8String.Data();