From a5710a410177d99ec2d9bf1ae7b1b48ed33ffae3 Mon Sep 17 00:00:00 2001 From: Kazim Abrar Mahi Date: Mon, 15 Apr 2024 23:48:04 +0600 Subject: [PATCH] Adding unicode regex mappings --- unicode-data.cpp | 4 ++++ unicode-data.h | 2 ++ 2 files changed, 6 insertions(+) diff --git a/unicode-data.cpp b/unicode-data.cpp index 22f8b0f0b..30ea60f61 100644 --- a/unicode-data.cpp +++ b/unicode-data.cpp @@ -1649,3 +1649,7 @@ const std::map unicode_map_lowercase = { {0x1E917, 0x1E939}, {0x1E918, 0x1E93A}, {0x1E919, 0x1E93B}, {0x1E91A, 0x1E93C}, {0x1E91B, 0x1E93D}, {0x1E91C, 0x1E93E}, {0x1E91D, 0x1E93F}, {0x1E91E, 0x1E940}, {0x1E91F, 0x1E941}, {0x1E920, 0x1E942}, {0x1E921, 0x1E943}, }; + +const std::map unicode_regex_to_wregex = { + +}; \ No newline at end of file diff --git a/unicode-data.h b/unicode-data.h index b99500b8f..46b774668 100644 --- a/unicode-data.h +++ b/unicode-data.h @@ -14,3 +14,5 @@ extern const std::vector> unicode_ranges_symbol; extern const std::vector> unicode_ranges_control; extern const std::multimap unicode_map_nfd; extern const std::map unicode_map_lowercase; +extern const std::map unicode_regex_to_wregex; +extern const std::map unicode_regex_to_regex; \ No newline at end of file