Merge pull request #986 from bobsummerwill/develop

Corrected accidental non-ANSI characters in comments
This commit is contained in:
Bob Summerwill 2016-08-31 13:02:24 -07:00 committed by GitHub
commit 58dbd162ab
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ void version()
}
/*
The equivalent of setlocale(LC_ALL, C) is called before any user code is run.
The equivalent of setlocale(LC_ALL, "C") is called before any user code is run.
If the user has an invalid environment setting then it is possible for the call
to set locale to fail, so there are only two possible actions, the first is to
throw a runtime exception and cause the program to quit (default behaviour),

View File

@ -28,7 +28,7 @@
using namespace std;
/*
The equivalent of setlocale(LC_ALL, C) is called before any user code is run.
The equivalent of setlocale(LC_ALL, "C") is called before any user code is run.
If the user has an invalid environment setting then it is possible for the call
to set locale to fail, so there are only two possible actions, the first is to
throw a runtime exception and cause the program to quit (default behaviour),