Skip to content

Instantly share code, notes, and snippets.

@wancw
Created January 20, 2015 08:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wancw/9a42176f467f6144bee8 to your computer and use it in GitHub Desktop.
Save wancw/9a42176f467f6144bee8 to your computer and use it in GitHub Desktop.
Fallback to minimal locale ("C" locale)
/* modified from https://github.com/bitcoin/bitcoin/issues/4147#issuecomment-42493883 */
try {
std::locale("");
} catch (const std::runtime_error& e) {
setenv("LC_ALL", "C", 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment