Skip to content

Commit 73c2bb5

Browse files
bnoordhuisMylesBorins
authored andcommitted
src: fix -Winconsistent-missing-override warning
Fix a compiler warning that was introduced in commit 4db1bc8 ("http2: allocate on every chunk send") by adding an `override` keyword. PR-URL: #16726 Reviewed-By: Anatoli Papirovski <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: Franziska Hinkelmann <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
1 parent ab87282 commit 73c2bb5

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
@@ -444,7 +444,7 @@ class Http2Session : public AsyncWrap,
444444
const SubmitTrailers& submit_trailers) override;
445445

446446
void Send(WriteWrap* req, char* buf, size_t length) override;
447-
WriteWrap* AllocateSend();
447+
WriteWrap* AllocateSend() override;
448448

449449
int DoWrite(WriteWrap* w, uv_buf_t* bufs, size_t count,
450450
uv_stream_t* send_handle) override;

0 commit comments

Comments
 (0)