| 91 | { |
| 92 | std::string_view m_unitSep, m_groupingSep; |
| 93 | InitSeparators() |
| 94 | { |
| 95 | auto const loc = GetCurrentLocale(); |
| 96 | m_unitSep = GetUnitSeparator(loc); |
| 97 | m_groupingSep = GetUnitsGroupingSeparator(loc); |
| 98 | } |
| 99 | }; |
| 100 | static InitSeparators seps; |
| 101 |
nothing calls this directly
no test coverage detected