diff options
author | Matt Godbolt <matt@godbolt.org> | 2017-12-22 08:01:33 -0600 |
---|---|---|
committer | Matt Godbolt <matt@godbolt.org> | 2017-12-22 08:01:33 -0600 |
commit | d085bac7084cf7e18a03e9f9fea47bae01223e82 (patch) | |
tree | af2f365d1c10d860cdea080b0bb071a3c2d13b4b /lib/compilers/Wine-CL.js | |
parent | 87afc3aa67e6e169fcc41cb7437e05f9261050ea (diff) | |
download | compiler-explorer-d085bac7084cf7e18a03e9f9fea47bae01223e82.tar.gz compiler-explorer-d085bac7084cf7e18a03e9f9fea47bae01223e82.zip |
Remove explicit langid, as it's part of the compiler config already
Diffstat (limited to 'lib/compilers/Wine-CL.js')
-rw-r--r-- | lib/compilers/Wine-CL.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/Wine-CL.js b/lib/compilers/Wine-CL.js index d206bb0f2..f0c275eb0 100644 --- a/lib/compilers/Wine-CL.js +++ b/lib/compilers/Wine-CL.js @@ -25,8 +25,8 @@ var Compile = require('../base-compiler'); var asm = require('../asm-cl'); -function compileCl(info, env, langId) { - var compile = new Compile(info, env, langId); +function compileCl(info, env) { + var compile = new Compile(info, env); compile.asm = new asm.AsmParser(compile.compilerProps); info.supportsFiltersInBinary = true; if (process.platform == "linux") { |