File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 1+ ## 0.2.1 (unreleased)
2+
3+ - Fixes unicode-query's output for "character width".
4+
15## 0.2.0 (2022-11-13)
26
37- Slightly improve performance of grapheme cluster segmentation.
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ void showCodepointProperties(char32_t codepoint)
112112 cout << " Script : " << unicode::script (codepoint) << ' \n ' ;
113113 cout << " General Category : " << properties.general_category << ' \n ' ;
114114 cout << " East Asian Width : " << properties.east_asian_width << ' \n ' ;
115- cout << " Character width : " << properties.char_width << ' \n ' ;
115+ cout << " Character width : " << unsigned ( properties.char_width ) << ' \n ' ;
116116 cout << " Emoji Segmentation Category : " << properties.emoji_segmentation_category << ' \n ' ;
117117 cout << " Grapheme Cluster Break : " << properties.grapheme_cluster_break << ' \n ' ;
118118 cout << " \n " ;
You can’t perform that action at this time.
0 commit comments