diff options
Diffstat (limited to 'source/compiler-core')
| -rw-r--r-- | source/compiler-core/slang-command-line-args.cpp | 2 | ||||
| -rw-r--r-- | source/compiler-core/slang-gcc-compiler-util.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source/compiler-core/slang-command-line-args.cpp b/source/compiler-core/slang-command-line-args.cpp index ec03e3116..e34dfdead 100644 --- a/source/compiler-core/slang-command-line-args.cpp +++ b/source/compiler-core/slang-command-line-args.cpp @@ -17,7 +17,7 @@ void CommandLineArgs::setArgs(const char*const* args, size_t argCount) StringBuilder buf; - auto escapeHandler = ProcessUtil::getEscapeHandler(); + auto escapeHandler = Process::getEscapeHandler(); for (size_t i = 0; i < argCount; ++i) { diff --git a/source/compiler-core/slang-gcc-compiler-util.cpp b/source/compiler-core/slang-gcc-compiler-util.cpp index c897f5492..034f349e0 100644 --- a/source/compiler-core/slang-gcc-compiler-util.cpp +++ b/source/compiler-core/slang-gcc-compiler-util.cpp @@ -419,7 +419,7 @@ static SlangResult _parseGCCFamilyLine(const UnownedStringSlice& line, LineParse case SLANG_EXECUTABLE: { outPath << options.modulePath; - outPath << ProcessUtil::getExecutableSuffix(); + outPath << Process::getExecutableSuffix(); return SLANG_OK; } case SLANG_OBJECT_CODE: |
