diff options
Diffstat (limited to 'include/unicode')
-rw-r--r-- | include/unicode/string.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/unicode/string.h b/include/unicode/string.h index 4b75864..afd4040 100644 --- a/include/unicode/string.h +++ b/include/unicode/string.h @@ -15,7 +15,8 @@ enum [[clang::flag_enum]] caseflags { CF_LANG_TR = 1 << 0, /* Turkish; alias for CF_LANG_AZ */ CF_LANG_LT = 1 << 1, /* Lithuanian */ CF_LANG_NL = 1 << 2, /* Dutch */ - CF_ẞ = 1 << 3, /* Use ‘ẞ’ as the uppercase of ‘ß’ */ + CF_SS = 1 << 3, /* Use ‘ẞ’ as the uppercase of ‘ß’; alias for CF_ẞ */ + CF_ẞ = 1 << 3, /* Use ‘ẞ’ as the uppercase of ‘ß’; alias for CF_SS */ }; /* clang-format on */ |