Codechange: Consistently use WChar when passing characters around, and also define it as char32_t.

This commit is contained in:
Michael Lutz
2020-05-17 23:31:49 +02:00
parent 43cd892e0c
commit 808c8198d5
4 changed files with 6 additions and 6 deletions

View File

@@ -32,7 +32,7 @@ enum CharSetFilter {
};
/** Type for wide characters, i.e. non-UTF8 encoded unicode characters. */
typedef uint32 WChar;
typedef char32_t WChar;
/* The following are directional formatting codes used to get the LTR and RTL strings right:
* http://www.unicode.org/unicode/reports/tr9/#Directional_Formatting_Codes */