summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2020-05-25 14:53:15 -0700
committerGitHub <noreply@github.com>2020-05-25 14:53:15 -0700
commitee2ec68596262398b2d77c128f45b3f32a28c35e (patch)
treef634315c6c83ac3684781083c38222ca30456ad0 /source
parent076a4c06767cca12c5205d950e9cd37451f91488 (diff)
parentfd28dcf07ef410aca56935496c7cf760f0064697 (diff)
Merge pull request #1356 from csyonghe/master
Remove non-ascii characters from source file.
Diffstat (limited to 'source')
-rw-r--r--source/core/slang-gcc-compiler-util.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/core/slang-gcc-compiler-util.cpp b/source/core/slang-gcc-compiler-util.cpp
index 68f89d9e1..cea9930b5 100644
--- a/source/core/slang-gcc-compiler-util.cpp
+++ b/source/core/slang-gcc-compiler-util.cpp
@@ -138,11 +138,11 @@ static SlangResult _parseGCCFamilyLine(const UnownedStringSlice& line, LineParse
/* example error output from different scenarios */
/*
- tests/cpp-compiler/c-compile-error.c: In function ‘int main(int, char**)’:
- tests/cpp-compiler/c-compile-error.c:8:13: error: ‘b’ was not declared in this scope
+ tests/cpp-compiler/c-compile-error.c: In function 'int main(int, char**)':
+ tests/cpp-compiler/c-compile-error.c:8:13: error: 'b' was not declared in this scope
int a = b + c;
^
- tests/cpp-compiler/c-compile-error.c:8:17: error: ‘c’ was not declared in this scope
+ tests/cpp-compiler/c-compile-error.c:8:17: error: 'c' was not declared in this scope
int a = b + c;
^
*/