--------------------------------------------------------------------------- \brief Resets the locale. The default locale used "." as decimal separator, no thousands separator and "," as function argument separator. */
| 228 | "," as function argument separator. |
| 229 | */ |
| 230 | void ParserBase::ResetLocale() |
| 231 | { |
| 232 | s_locale = std::locale(std::locale("C"), new change_dec_sep<char_type>('.')); |
| 233 | SetArgSep(','); |
| 234 | } |
| 235 | |
| 236 | //--------------------------------------------------------------------------- |
| 237 | /** \brief Initialize the token reader. |
no outgoing calls