signal_wrap: fix unused variable compiler warning

This commit is contained in:
Ben Noordhuis 2012-08-21 12:50:34 +02:00
parent 2c5828b65b
commit 2cdf427dce

View File

@ -72,7 +72,7 @@ class SignalWrap : public HandleWrap {
assert(args.IsConstructCall()); assert(args.IsConstructCall());
HandleScope scope; HandleScope scope;
SignalWrap* wrap = new SignalWrap(args.This()); new SignalWrap(args.This());
return scope.Close(args.This()); return scope.Close(args.This());
} }