From d8df78c573d961f9fbefc4824bdd1640b5e35d68 Mon Sep 17 00:00:00 2001 From: Brian White Date: Sat, 1 Oct 2016 01:47:48 -0400 Subject: [PATCH] src: remove unused function declaration PR-URL: https://github.com/nodejs/node/pull/8878 Reviewed-By: Ben Noordhuis Reviewed-By: Colin Ihrig Reviewed-By: Ilkka Myller Reviewed-By: Franziska Hinkelmann --- src/udp_wrap.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/udp_wrap.h b/src/udp_wrap.h index 0d33e617c0e4b8..ad5f92c0f52bcb 100644 --- a/src/udp_wrap.h +++ b/src/udp_wrap.h @@ -27,7 +27,6 @@ class UDPWrap: public HandleWrap { static void Send6(const v8::FunctionCallbackInfo& args); static void RecvStart(const v8::FunctionCallbackInfo& args); static void RecvStop(const v8::FunctionCallbackInfo& args); - static void GetSockName(const v8::FunctionCallbackInfo& args); static void AddMembership(const v8::FunctionCallbackInfo& args); static void DropMembership(const v8::FunctionCallbackInfo& args); static void SetMulticastTTL(const v8::FunctionCallbackInfo& args);