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:
authorBen Noordhuis <info@bnoordhuis.nl>2014-10-22 06:53:26 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2014-10-24 00:49:59 +0400
commit5ab87dba738d31d4d84eea95346d3ba16b96c7c2 (patch)
treeaab7005ece24ceeece87fdb9f882065990bd4993 /src/timer_wrap.cc
parentc038dcc360cb5e72c5891d1ef59640f5c3fa76b8 (diff)
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/timer_wrap.cc')
-rw-r--r--src/timer_wrap.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/timer_wrap.cc b/src/timer_wrap.cc
index dfa551d05c5..8ccdca59611 100644
--- a/src/timer_wrap.cc
+++ b/src/timer_wrap.cc
@@ -91,9 +91,6 @@ class TimerWrap : public HandleWrap {
CHECK_EQ(r, 0);
}
- ~TimerWrap() {
- }
-
static void Start(const FunctionCallbackInfo<Value>& args) {
TimerWrap* wrap = Unwrap<TimerWrap>(args.Holder());