diff options
author | RabsRincon <rubrinbla@gmail.com> | 2017-12-02 04:01:12 +0100 |
---|---|---|
committer | RabsRincon <rubrinbla@gmail.com> | 2017-12-02 04:01:12 +0100 |
commit | 63ed0e79c5ab12da3b697b04b41f8075c8b79f87 (patch) | |
tree | 325e699af0a6068655e2695839b9109416b935f6 /lib/compilers/default.js | |
parent | c1ff139b6a52c7299961b26b4f5b1af5b0111765 (diff) | |
download | compiler-explorer-63ed0e79c5ab12da3b697b04b41f8075c8b79f87.tar.gz compiler-explorer-63ed0e79c5ab12da3b697b04b41f8075c8b79f87.zip |
Change enough stuff as to get it running
Not saying it works, but if you hack few more things, you can start
to use it. Commiting just in case
Diffstat (limited to 'lib/compilers/default.js')
-rw-r--r-- | lib/compilers/default.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/default.js b/lib/compilers/default.js index 759d2bbe8..64a542760 100644 --- a/lib/compilers/default.js +++ b/lib/compilers/default.js @@ -24,7 +24,7 @@ const Compile = require('../base-compiler'); -module.exports = function (info, env) { - var comp = new Compile(info, env); +module.exports = function (info, env, langId) { + var comp = new Compile(info, env, langId); return comp.initialise(); };
\ No newline at end of file |