summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 632dad1f81..87415eb575 100644
--- a/src/node_zlib.cc
+++ b/src/node_zlib.cc
@@ -219,7 +219,7 @@ class ZCtx : public AsyncWrap, public ThreadPoolWork {
// This function may be called multiple times on the uv_work pool
// for a single write() call, until all of the input bytes have
// been consumed.
- void DoThreadPoolWork() {
+ void DoThreadPoolWork() override {
const Bytef* next_expected_header_byte = nullptr;
// If the avail_out is left at 0, then it means that it ran out
@@ -353,7 +353,7 @@ class ZCtx : public AsyncWrap, public ThreadPoolWork {
// v8 land!
- void AfterThreadPoolWork(int status) {
+ void AfterThreadPoolWork(int status) override {
write_in_progress_ = false;
if (status == UV_ECANCELED) {