From 096bd538e8b24e87b0deaf44c0da9f29ebe4b248 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Tue, 21 Nov 2017 10:34:59 -0500 Subject: [PATCH] src: fix compiler warning This commit fixes a -Winconsistent-missing-override warning. PR-URL: https://github.com/nodejs/node/pull/17195 Reviewed-By: Refael Ackermann Reviewed-By: James M Snell --- src/node_http2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node_http2.h b/src/node_http2.h index ff9597bbf0c785..429fbdcdf05e65 100644 --- a/src/node_http2.h +++ b/src/node_http2.h @@ -554,7 +554,7 @@ class Http2Stream : public AsyncWrap, int ReadStop() override; // Required for StreamBase - int DoShutdown(ShutdownWrap* req_wrap); + int DoShutdown(ShutdownWrap* req_wrap) override; // Initiate a response on this stream. inline int SubmitResponse(nghttp2_nv* nva,