File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ namespace {
21
21
/* Special width values */
22
22
enum {
23
23
widechar_nonprint = -1 , // The character is not printable.
24
- widechar_combining = - 2 , // The character is a zero-width combiner.
25
- widechar_ambiguous = - 3 , // The character is East-Asian ambiguous width.
26
- widechar_private_use = - 4 , // The character is for private use.
27
- widechar_unassigned = -5 , // The character is unassigned.
28
- widechar_widened_in_9 = - 6 , // Width is 1 in Unicode 8, 2 in Unicode 9+.
29
- widechar_non_character = -7 // The character is a noncharacter.
24
+ widechar_combining = 0 , // The character is a zero-width combiner.
25
+ widechar_ambiguous = 1 , // The character is East-Asian ambiguous width.
26
+ widechar_private_use = 1 , // The character is for private use.
27
+ widechar_unassigned = -1 , // The character is unassigned.
28
+ widechar_widened_in_9 = 2 , // Width is 1 in Unicode 8, 2 in Unicode 9+.
29
+ widechar_non_character = -1 // The character is a noncharacter.
30
30
};
31
31
32
32
/* An inclusive range of characters. */
You can’t perform that action at this time.
0 commit comments