diff options
author | partouf <partouf@gmail.com> | 2018-01-03 13:09:50 +0100 |
---|---|---|
committer | partouf <partouf@gmail.com> | 2018-01-03 13:09:50 +0100 |
commit | 7fa8dbd85a1dfbe8e5cf5f050abc6ad71d3dc22c (patch) | |
tree | f6cc1f21f711d7f099bb0bd453ded85092bb53a6 /lib/compilers/WSL-CL.js | |
parent | b5d4ab04fc20ddbb7349ab970b45dcc07e6bf3a2 (diff) | |
download | compiler-explorer-7fa8dbd85a1dfbe8e5cf5f050abc6ad71d3dc22c.tar.gz compiler-explorer-7fa8dbd85a1dfbe8e5cf5f050abc6ad71d3dc22c.zip |
shortened notation
Diffstat (limited to 'lib/compilers/WSL-CL.js')
-rw-r--r-- | lib/compilers/WSL-CL.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/compilers/WSL-CL.js b/lib/compilers/WSL-CL.js index e0272be87..1a3e37ec1 100644 --- a/lib/compilers/WSL-CL.js +++ b/lib/compilers/WSL-CL.js @@ -68,11 +68,7 @@ function compileCl(info, env) { return false; }; - compile.getArgumentParser = function () { - return function (compiler) { - return compiler; - } - }; + compile.getArgumentParser = () => (compiler) => compiler; compile.postProcessAsm = function(result) { return RunCLDemangler(this, result); |