Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrevor Norris <trev.norris@gmail.com>2013-10-30 00:09:52 +0400
committerTrevor Norris <trev.norris@gmail.com>2013-10-30 02:09:44 +0400
commitf2e3be53bc33fc9269c248cec4ac26d6ec9054f7 (patch)
tree544ee459002a8fc1c8f3dccb2ff2025959fdd82b /src/udp_wrap.h
parent60a3e695cb6ff09f81de4195368535fdb11e2da9 (diff)
src: don't use class specific Unwrap methods
Instead use the template functions in util.h.
Diffstat (limited to 'src/udp_wrap.h')
-rw-r--r--src/udp_wrap.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/udp_wrap.h b/src/udp_wrap.h
index b9aa566be22..ab0d6fa8e69 100644
--- a/src/udp_wrap.h
+++ b/src/udp_wrap.h
@@ -52,7 +52,6 @@ class UDPWrap: public HandleWrap {
const v8::FunctionCallbackInfo<v8::Value>& args);
static void SetBroadcast(const v8::FunctionCallbackInfo<v8::Value>& args);
static void SetTTL(const v8::FunctionCallbackInfo<v8::Value>& args);
- static UDPWrap* Unwrap(v8::Local<v8::Object> obj);
static v8::Local<v8::Object> Instantiate(Environment* env);
uv_udp_t* UVHandle();