Codechange: use EnumRange over many enum loops

This commit is contained in:
Peter Nelson
2026-06-13 21:54:42 +01:00
committed by Peter Nelson
parent c991564e12
commit c3b0d71973
67 changed files with 136 additions and 141 deletions
+1 -1
View File
@@ -106,7 +106,7 @@ void InitializeUnicodeGlyphMap(FontSize fs)
*/
void InitializeUnicodeGlyphMap()
{
for (FontSize fs = FontSize::Begin; fs < FontSize::End; fs++) {
for (FontSize fs : EnumRange(FontSize::End)) {
InitializeUnicodeGlyphMap(fs);
}
}