summaryrefslogtreecommitdiffstats
path: root/source/core/slang-gcc-compiler-util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/core/slang-gcc-compiler-util.cpp')
-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;
^
*/