From 75032c9c8b0f5e47ed3361b45cfb8e8852bc5a5c Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Sat, 13 Jan 2018 17:06:51 +0100 Subject: [PATCH] src: remove declarations for missing functions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/18134 Reviewed-By: Anatoli Papirovski Reviewed-By: Colin Ihrig Reviewed-By: Jon Moss Reviewed-By: James M Snell Reviewed-By: Tobias Nießen Reviewed-By: Ruben Bridgewater Reviewed-By: Tiancheng "Timothy" Gu Reviewed-By: Franziska Hinkelmann Reviewed-By: Daniel Bevenius --- src/node_http2.h | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/node_http2.h b/src/node_http2.h index 765f7294768489..4ed06c95970039 100644 --- a/src/node_http2.h +++ b/src/node_http2.h @@ -1048,24 +1048,6 @@ class Http2Session : public AsyncWrap { int lib_error_code, void* user_data); - - static inline ssize_t OnStreamReadFD( - nghttp2_session* session, - int32_t id, - uint8_t* buf, - size_t length, - uint32_t* flags, - nghttp2_data_source* source, - void* user_data); - static inline ssize_t OnStreamRead( - nghttp2_session* session, - int32_t id, - uint8_t* buf, - size_t length, - uint32_t* flags, - nghttp2_data_source* source, - void* user_data); - struct Callbacks { inline explicit Callbacks(bool kHasGetPaddingCallback); inline ~Callbacks();