Skip to content

Commit

Permalink
Merge pull request #1228 from LLNL/bugfix/kweiss/locales-redux
Browse files Browse the repository at this point in the history
Bugfix for `axom::utilities::locale`
  • Loading branch information
kennyweiss committed Dec 6, 2023
2 parents 7cf73c9 + 8473d52 commit 0075f83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/axom/core/utilities/System.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ std::locale locale(const std::string& name)
}
catch(std::runtime_error&)
{
loc = std::locale(loc, "", std::locale::ctype);
loc = std::locale(loc, "C", std::locale::ctype);
}

return loc;
Expand Down

0 comments on commit 0075f83

Please sign in to comment.