mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2026-02-19 14:46:28 +00:00
Use std::locale::classic() instead of creating new C locales on demand.
This commit is contained in:
committed by
Jesse Beder
parent
aa8d4e4750
commit
4fe2fb83fe
@@ -77,7 +77,7 @@ void Parser::HandleYamlDirective(const Token& token) {
|
||||
}
|
||||
|
||||
std::stringstream str(token.params[0]);
|
||||
str.imbue(std::locale("C"));
|
||||
str.imbue(std::locale::classic());
|
||||
str >> m_pDirectives->version.major;
|
||||
str.get();
|
||||
str >> m_pDirectives->version.minor;
|
||||
|
||||
Reference in New Issue
Block a user