Reviewers: , Description: Remove unused variable to please GCC 4.6.
[email protected] Please review this at http://codereview.chromium.org/6777024/ SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/api.cc Index: src/api.cc =================================================================== --- src/api.cc (revision 7450) +++ src/api.cc (working copy) @@ -4175,9 +4175,11 @@ // Call ResetDateCache(0 but expect no exceptions: bool caught_exception = false; - i::Handle<i::Object> result = - i::Execution::TryCall(func, isolate->js_builtins_object(), 0, NULL, - &caught_exception); + i::Execution::TryCall(func, + isolate->js_builtins_object(), + 0, + NULL, + &caught_exception); } } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
