| 467 | } |
| 468 | |
| 469 | static std::string_view GetDecimalSeparator() |
| 470 | { |
| 471 | std::string_view decimal_separator = _settings_game.locale.digit_decimal_separator; |
| 472 | if (decimal_separator.empty()) decimal_separator = _langpack.langpack->digit_decimal_separator; |
| 473 | return decimal_separator; |
| 474 | } |
| 475 | |
| 476 | /** |
| 477 | * Format a number into a string. |
no test coverage detected