| 63 | struct CNumericLocale |
| 64 | { |
| 65 | CNumericLocale() |
| 66 | { |
| 67 | #ifdef _WIN32 |
| 68 | Locale = _create_locale(LC_NUMERIC, "C"); |
| 69 | #else |
| 70 | Locale = newlocale(LC_NUMERIC_MASK, "C", 0); |
| 71 | #endif |
| 72 | } |
| 73 | |
| 74 | ~CNumericLocale() |
| 75 | { |
nothing calls this directly
no outgoing calls
no test coverage detected