1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 18:20:43 +09:00

LibUnicode: Generate per-locale approximately & range separator symbols

This commit is contained in:
Timothy Flynn 2022-07-20 13:51:27 -04:00 committed by Linus Groh
parent 33d74fb9ce
commit b2709f161e
Notes: sideshowbarker 2024-07-17 08:44:24 +09:00
2 changed files with 21 additions and 0 deletions

View file

@ -47,6 +47,7 @@ struct NumberFormat {
};
enum class NumericSymbol : u8 {
ApproximatelySign,
Decimal,
Exponential,
Group,
@ -55,6 +56,7 @@ enum class NumericSymbol : u8 {
NaN,
PercentSign,
PlusSign,
RangeSeparator,
TimeSeparator,
};