From a91bca7937e7f6ffdc84c998eade6d38fb08cbb9 Mon Sep 17 00:00:00 2001 From: Christopher Gilbert Date: Tue, 30 Aug 2016 16:13:21 +0100 Subject: Code review changes: stylistic changes, and removed redundant call to set locale. --- lllc/main.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lllc') diff --git a/lllc/main.cpp b/lllc/main.cpp index 46416365..ed91c0a2 100644 --- a/lllc/main.cpp +++ b/lllc/main.cpp @@ -53,10 +53,11 @@ void version() exit(0); } -void setEnv() { - std::setlocale(LC_ALL, "C"); +void setEnv() +{ #if !defined(WIN32) && !defined(MAC_OSX) && !defined(__FreeBSD__) && !defined(__OpenBSD__) - if (!std::setlocale(LC_ALL, "")) { + if (!std::setlocale(LC_ALL, "")) + { setenv("LC_ALL", "C", 1); } #endif -- cgit