Fix bug 2136 updated

As described by David Bailes, it should be std::locale nolocale("C");
This commit is contained in:
Steve Daulton 2019-06-24 20:34:54 +01:00 committed by GitHub
parent 3d5eec7929
commit 7485d88bcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ void CommandMessageTarget::AddBool(const bool value, const wxString &name){
void CommandMessageTarget::AddItem(const double value, const wxString &name){
std::stringstream str;
std::locale nolocale("");
std::locale nolocale("C");
str.imbue(nolocale);
if( name.empty() )