diff options
author | Partouf <partouf@gmail.com> | 2019-01-10 23:55:04 +0100 |
---|---|---|
committer | Partouf <partouf@gmail.com> | 2019-01-10 23:55:04 +0100 |
commit | 38d004a187f5ecb5441eceadfeb30e26d098aae6 (patch) | |
tree | 0e8d5a0b5866d69ed29b6f1e2829751b065d5545 /lib/compilers/swift.js | |
parent | d8c8ec433ad3d9886b0dc8b8024744dc66d577f9 (diff) | |
parent | e9bead3c04d853b1bbcad985159dd586e5ab21bb (diff) | |
download | compiler-explorer-38d004a187f5ecb5441eceadfeb30e26d098aae6.tar.gz compiler-explorer-38d004a187f5ecb5441eceadfeb30e26d098aae6.zip |
Merge remote-tracking branch 'matt/master' into compilerargs
Diffstat (limited to 'lib/compilers/swift.js')
-rw-r--r-- | lib/compilers/swift.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/compilers/swift.js b/lib/compilers/swift.js index 8a25ae949..71934d7e8 100644 --- a/lib/compilers/swift.js +++ b/lib/compilers/swift.js @@ -29,6 +29,10 @@ class SwiftCompiler extends BaseCompiler { getArgumentParser() { return argumentParsers.Clang; } + + isCfgCompiler(/*compilerVersion*/) { + return true; + } } module.exports = SwiftCompiler; |