From 2d6680e985211178c991b223f36615978d02ca3f Mon Sep 17 00:00:00 2001 From: Morteza Milani Date: Sun, 12 Aug 2012 22:39:25 +0430 Subject: [PATCH] Fix macro bug --- src/appjs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/appjs.h b/src/appjs.h index f7a412c5..3626a058 100644 --- a/src/appjs.h +++ b/src/appjs.h @@ -88,7 +88,7 @@ Handle Type::Method(const Arguments& args) { \ HandleScope scope; \ Native##Type *obj = ObjectWrap::Unwrap(args.This()); \ - obj->##Method##(); \ + obj->Method(); \ return scope.Close(args.This()); \ }