diff options
author | Patrick Quist <partouf@gmail.com> | 2023-05-16 03:53:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-16 03:53:57 +0200 |
commit | 079d4957571398f72482ce156076b2d4fbddbbf7 (patch) | |
tree | 96a58133f203e4df4a55cf2171d5e354de605827 /lib/compilers/swift.ts | |
parent | d6deb08cee8a06b9163c4d3dad37af20453346fb (diff) | |
download | compiler-explorer-079d4957571398f72482ce156076b2d4fbddbbf7.tar.gz compiler-explorer-079d4957571398f72482ce156076b2d4fbddbbf7.zip |
Compiler overrides (#5001)gh-7408
Diffstat (limited to 'lib/compilers/swift.ts')
-rw-r--r-- | lib/compilers/swift.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/swift.ts b/lib/compilers/swift.ts index caa07237e..b944dac92 100644 --- a/lib/compilers/swift.ts +++ b/lib/compilers/swift.ts @@ -24,7 +24,7 @@ import {BaseCompiler} from '../base-compiler.js'; -import {ClangParser} from './argument-parsers.js'; +import {SwiftParser} from './argument-parsers.js'; export class SwiftCompiler extends BaseCompiler { static get key() { @@ -36,7 +36,7 @@ export class SwiftCompiler extends BaseCompiler { } override getArgumentParser() { - return ClangParser; + return SwiftParser; } override isCfgCompiler(/*compilerVersion*/) { |