From 0b128842f69208b76f9d7be26d3e849502fe69fd 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 f375a249b803b8..e4b6226e82f659 100644 --- a/src/node_http2.h +++ b/src/node_http2.h @@ -555,7 +555,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,