diff options
author | partouf <partouf@gmail.com> | 2018-01-28 01:50:06 +0100 |
---|---|---|
committer | partouf <partouf@gmail.com> | 2018-01-28 01:50:06 +0100 |
commit | b46611d8d452e96228d78bea658686969b85aecf (patch) | |
tree | f18d9dc4370d5513c13a89ba02cc18bc5cdfc46e /lib/compilers/gcc.js | |
parent | 68a7f9420dbb318303e255de14aff46721d933ac (diff) | |
download | compiler-explorer-b46611d8d452e96228d78bea658686969b85aecf.tar.gz compiler-explorer-b46611d8d452e96228d78bea658686969b85aecf.zip |
remove obsolete/empty constructors
Diffstat (limited to 'lib/compilers/gcc.js')
-rw-r--r-- | lib/compilers/gcc.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/compilers/gcc.js b/lib/compilers/gcc.js index 752c8b79e..b5b427a50 100644 --- a/lib/compilers/gcc.js +++ b/lib/compilers/gcc.js @@ -25,9 +25,6 @@ const BaseCompiler = require('../base-compiler'); class GCCCompiler extends BaseCompiler { - constructor(info, env) { - super(info, env); - } } module.exports = GCCCompiler; |