diff options
author | Matt Godbolt <mgodbolt@drw.com> | 2016-12-19 18:01:16 -0600 |
---|---|---|
committer | Matt Godbolt <mgodbolt@drw.com> | 2016-12-19 18:01:27 -0600 |
commit | 7990e42f7ccad1f9ff8e90d425831d173f9992a4 (patch) | |
tree | 8b57477b26762924ba0190666a0df6896b55028f /lib/diff.js | |
parent | 9cac3033d92f185216d23a939198da63e512f0de (diff) | |
download | compiler-explorer-7990e42f7ccad1f9ff8e90d425831d173f9992a4.tar.gz compiler-explorer-7990e42f7ccad1f9ff8e90d425831d173f9992a4.zip |
Refactor individual compilation types into their own files
Diffstat (limited to 'lib/diff.js')
-rw-r--r-- | lib/diff.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/diff.js b/lib/diff.js index c456b1e17..cf73cbdf7 100644 --- a/lib/diff.js +++ b/lib/diff.js @@ -197,7 +197,7 @@ function buildDiffHandler(config) { reject(e); }); child.on('exit', function () { - // See comment in compile.js - seems needed if the child has immediately exited + // See comment in compile-handler.js - seems needed if the child has immediately exited setTimeout(function () { resolve(stdout); }, 0); |