summaryrefslogtreecommitdiff
path: root/src/node_zlib.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_zlib.cc')
-rw-r--r--src/node_zlib.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node_zlib.cc b/src/node_zlib.cc
index c77e6d3297..ac5083862d 100644
--- a/src/node_zlib.cc
+++ b/src/node_zlib.cc
@@ -217,11 +217,11 @@ class ZCtx : public AsyncWrap, public ThreadPoolWork {
// TODO(addaleax): Make these methods non-static. It's a significant bunch
// of churn that's better left for a separate PR.
- void DoThreadPoolWork() {
+ void DoThreadPoolWork() override {
Process(this);
}
- void AfterThreadPoolWork(int status) {
+ void AfterThreadPoolWork(int status) override {
After(this, status);
}