Revision: 7451
Author:   [email protected]
Date:     Wed Mar 30 13:14:55 2011
Log:      Remove unused variable to please GCC 4.6.
Review URL: http://codereview.chromium.org/6777024
http://code.google.com/p/v8/source/detail?r=7451

Modified:
 /branches/bleeding_edge/src/api.cc

=======================================
--- /branches/bleeding_edge/src/api.cc  Wed Mar 30 07:04:26 2011
+++ /branches/bleeding_edge/src/api.cc  Wed Mar 30 13:14:55 2011
@@ -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

Reply via email to