Codechange: remove all u8 prefix in favour of compile-time option (#11807)

This commit is contained in:
Patric Stout
2024-01-16 22:33:53 +01:00
committed by GitHub
parent 6550682b49
commit 6860a86d45
7 changed files with 693 additions and 686 deletions

View File

@@ -501,7 +501,7 @@ static void MakeFinnishTownName(StringBuilder &builder, uint32_t seed)
if (view.find_first_of("aouAOU") != std::string_view::npos) {
builder += "la";
} else {
builder += u8"l\u00e4";
builder += "l\u00e4";
}
return;
}