Commit 0d7b70ee authored by vegorov@chromium.org's avatar vegorov@chromium.org

Remove unused variable to please GCC 4.6.

Review URL: http://codereview.chromium.org/6777024

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7451 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent d89c7531
...@@ -4175,9 +4175,11 @@ void v8::Date::DateTimeConfigurationChangeNotification() { ...@@ -4175,9 +4175,11 @@ void v8::Date::DateTimeConfigurationChangeNotification() {
// Call ResetDateCache(0 but expect no exceptions: // Call ResetDateCache(0 but expect no exceptions:
bool caught_exception = false; bool caught_exception = false;
i::Handle<i::Object> result = i::Execution::TryCall(func,
i::Execution::TryCall(func, isolate->js_builtins_object(), 0, NULL, isolate->js_builtins_object(),
&caught_exception); 0,
NULL,
&caught_exception);
} }
} }
......
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