diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2014-10-22 04:53:26 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2014-10-23 22:49:59 +0200 |
commit | 5ab87dba738d31d4d84eea95346d3ba16b96c7c2 (patch) | |
tree | aab7005ece24ceeece87fdb9f882065990bd4993 /src/udp_wrap.h | |
parent | c038dcc360cb5e72c5891d1ef59640f5c3fa76b8 (diff) | |
download | node-new-5ab87dba738d31d4d84eea95346d3ba16b96c7c2.tar.gz |
src: mark empty destructors as default
Mark empty destructors as having a default no-op implementation.
Remove a few unused constructors and destructors while we are here.
Diffstat (limited to 'src/udp_wrap.h')
-rw-r--r-- | src/udp_wrap.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/udp_wrap.h b/src/udp_wrap.h index 5d9cbef746..fea298031a 100644 --- a/src/udp_wrap.h +++ b/src/udp_wrap.h @@ -58,7 +58,6 @@ class UDPWrap: public HandleWrap { private: UDPWrap(Environment* env, v8::Handle<v8::Object> object); - virtual ~UDPWrap() override; static void DoBind(const v8::FunctionCallbackInfo<v8::Value>& args, int family); |