aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/gcc.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compilers/gcc.js')
-rw-r--r--lib/compilers/gcc.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/gcc.js b/lib/compilers/gcc.js
index 012490789..da3a2a7e0 100644
--- a/lib/compilers/gcc.js
+++ b/lib/compilers/gcc.js
@@ -27,7 +27,7 @@ const BaseCompiler = require('../base-compiler');
class GCCCompiler extends BaseCompiler {
constructor(info, env) {
super(info, env);
- return this.initialise();
+ this.initResult = this.initialise();
}
}