Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
signal_wrap: fix unused variable compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Aug 21, 2012
1 parent 2c5828b commit 2cdf427
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/signal_wrap.cc
Expand Up @@ -72,7 +72,7 @@ class SignalWrap : public HandleWrap {
assert(args.IsConstructCall());

HandleScope scope;
SignalWrap* wrap = new SignalWrap(args.This());
new SignalWrap(args.This());

return scope.Close(args.This());
}
Expand Down

0 comments on commit 2cdf427

Please sign in to comment.