diff options
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*/) { |