Skip to content

Commit 0b12884

Browse files
cjihrigMylesBorins
authored andcommitted
src: fix compiler warning
This commit fixes a -Winconsistent-missing-override warning. PR-URL: #17195 Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent b2c10ca commit 0b12884

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node_http2.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ class Http2Stream : public AsyncWrap,
555555
int ReadStop() override;
556556

557557
// Required for StreamBase
558-
int DoShutdown(ShutdownWrap* req_wrap);
558+
int DoShutdown(ShutdownWrap* req_wrap) override;
559559

560560
// Initiate a response on this stream.
561561
inline int SubmitResponse(nghttp2_nv* nva,

0 commit comments

Comments
 (0)