aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/argument-parsers.ts
diff options
context:
space:
mode:
authorJeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com>2023-06-11 18:09:35 -0400
committerGitHub <noreply@github.com>2023-06-11 18:09:35 -0400
commit910d69f233414ebfb0b680e012f44ced14505016 (patch)
tree3a459d3a0e3c27cbbec34b549cc4409a767e0efe /lib/compilers/argument-parsers.ts
parent74e177dd0b1c8e0a5299e4e017c8dec31079ca00 (diff)
downloadcompiler-explorer-910d69f233414ebfb0b680e012f44ced14505016.tar.gz
compiler-explorer-910d69f233414ebfb0b680e012f44ced14505016.zip
Turn on @typescript-eslint/await-thenable (#5131)gh-7683
Diffstat (limited to 'lib/compilers/argument-parsers.ts')
-rw-r--r--lib/compilers/argument-parsers.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/argument-parsers.ts b/lib/compilers/argument-parsers.ts
index 981ed92bf..f3756203c 100644
--- a/lib/compilers/argument-parsers.ts
+++ b/lib/compilers/argument-parsers.ts
@@ -1013,7 +1013,7 @@ export class SwiftParser extends ClangParser {
static override async parse(compiler) {
const results = await Promise.all([this.getOptions(compiler, '--help')]);
const options = Object.assign({}, ...results);
- await this.setCompilerSettingsFromOptions(compiler, options);
+ this.setCompilerSettingsFromOptions(compiler, options);
return compiler;
}