From 9703531273d0c18672724a9a1458c8129390ce16 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Fri, 26 Jul 2024 21:16:27 +0200 Subject: [PATCH] Added a code comment regarding Unicode case mapping entries for the Latin Extended-B Unicode block --- es-core/src/utils/StringUtil.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/es-core/src/utils/StringUtil.cpp b/es-core/src/utils/StringUtil.cpp index af8144508..fd3be6bf9 100644 --- a/es-core/src/utils/StringUtil.cpp +++ b/es-core/src/utils/StringUtil.cpp @@ -28,6 +28,8 @@ namespace Utils { // Unicode case conversion mapping table, based on data from this site: // https://www.ibm.com/support/knowledgecenter/ssw_ibm_i_71/nls/rbagslowtoupmaptable.htm + // A number of entries from the Latin Extended-B Unicode block has been addded as well: + // https://en.wikipedia.org/wiki/Latin_Extended-B static wchar_t unicodeLowercase[] = { (wchar_t)0x0061, (wchar_t)0x0062, (wchar_t)0x0063, (wchar_t)0x0064, (wchar_t)0x0065, (wchar_t)0x0066, (wchar_t)0x0067, (wchar_t)0x0068, (wchar_t)0x0069, (wchar_t)0x006A,