Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix macro bug
  • Loading branch information
milani committed Aug 12, 2012
1 parent 18d96ae commit 2d6680e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/appjs.h
Expand Up @@ -88,7 +88,7 @@
Handle<Value> Type::Method(const Arguments& args) { \ Handle<Value> Type::Method(const Arguments& args) { \
HandleScope scope; \ HandleScope scope; \
Native##Type *obj = ObjectWrap::Unwrap<Native##Type>(args.This()); \ Native##Type *obj = ObjectWrap::Unwrap<Native##Type>(args.This()); \
obj->##Method##(); \ obj->Method(); \
return scope.Close(args.This()); \ return scope.Close(args.This()); \
} }


Expand Down

0 comments on commit 2d6680e

Please sign in to comment.