Skip to content

Commit

Permalink
src: fix compiler warning
Browse files Browse the repository at this point in the history
This commit fixes a -Winconsistent-missing-override warning.

PR-URL: #17195
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
cjihrig authored and gibfahn committed Dec 19, 2017
1 parent 56c9069 commit 096bd53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_http2.h
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 096bd53

Please sign in to comment.