diff options
| author | Yong He <yonghe@outlook.com> | 2020-05-25 13:07:26 -0700 |
|---|---|---|
| committer | Yong He <yonghe@outlook.com> | 2020-05-25 13:07:26 -0700 |
| commit | fd28dcf07ef410aca56935496c7cf760f0064697 (patch) | |
| tree | f634315c6c83ac3684781083c38222ca30456ad0 | |
| parent | 076a4c06767cca12c5205d950e9cd37451f91488 (diff) | |
Remove non-ascii characters from source file.
| -rw-r--r-- | source/core/slang-gcc-compiler-util.cpp | 6 |
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; ^ */ |
