| 67 | } |
| 68 | |
| 69 | void setThousandsSeparator( char ch ) |
| 70 | { |
| 71 | forAllUnits( [&]<typename E>() |
| 72 | { |
| 73 | auto params = getDefaultUnitParams<E>(); |
| 74 | params.thousandsSeparator = ch; |
| 75 | setDefaultUnitParams( params ); |
| 76 | } ); |
| 77 | } |
| 78 | |
| 79 | std::optional<LengthUnit> getUiLengthUnit() |
| 80 | { |
no test coverage detected