Commit d01e4f68 by Benjamin Byholm

Merge pull request #3 from jeromew/patch-1

Update macros.h
parents bb15108e 910c66ad
...@@ -104,7 +104,7 @@ const char* sqlite_authorizer_string(int type); ...@@ -104,7 +104,7 @@ const char* sqlite_authorizer_string(int type);
#define TRY_CATCH_CALL(context, callback, argc, argv) \ #define TRY_CATCH_CALL(context, callback, argc, argv) \
{ TryCatch try_catch; \ { TryCatch try_catch; \
(callback)->Call((context), (argc), (argv)); \ MakeCallback((context), (callback), (argc), (argv)); \
if (try_catch.HasCaught()) { \ if (try_catch.HasCaught()) { \
FatalException(try_catch); \ FatalException(try_catch); \
} } } }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment