aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBob Summerwill <bob@summerwill.net>2016-09-01 04:02:24 +0800
committerGitHub <noreply@github.com>2016-09-01 04:02:24 +0800
commit58dbd162ab369e9dd69af0b2a45a386527ed7b58 (patch)
tree6416dcfe95ddb16c338aa42673bde57c96ed41c4
parentb962d3c071f2f476d8ea05dd9869565175c2cd65 (diff)
parentbe3f4bda21c3c26f3d0fd94ab93ee807db184507 (diff)
downloaddexon-solidity-58dbd162ab369e9dd69af0b2a45a386527ed7b58.tar.gz
dexon-solidity-58dbd162ab369e9dd69af0b2a45a386527ed7b58.tar.zst
dexon-solidity-58dbd162ab369e9dd69af0b2a45a386527ed7b58.zip
Merge pull request #986 from bobsummerwill/develop
Corrected accidental non-ANSI characters in comments
-rw-r--r--lllc/main.cpp2
-rw-r--r--solc/main.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/lllc/main.cpp b/lllc/main.cpp
index ecd0de99..06611af0 100644
--- a/lllc/main.cpp
+++ b/lllc/main.cpp
@@ -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),
diff --git a/solc/main.cpp b/solc/main.cpp
index 11facfa6..26010716 100644
--- a/solc/main.cpp
+++ b/solc/main.cpp
@@ -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),