diff options
| author | Yong He <yonghe@outlook.com> | 2020-05-25 14:53:15 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-25 14:53:15 -0700 |
| commit | ee2ec68596262398b2d77c128f45b3f32a28c35e (patch) | |
| tree | f634315c6c83ac3684781083c38222ca30456ad0 /source/core | |
| parent | 076a4c06767cca12c5205d950e9cd37451f91488 (diff) | |
| parent | fd28dcf07ef410aca56935496c7cf760f0064697 (diff) | |
Merge pull request #1356 from csyonghe/master
Remove non-ascii characters from source file.
Diffstat (limited to 'source/core')
| -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; ^ */ |
