Reviewers: Jakob,

Description:
Remove unused variable in mksnapshot.cc.

Please review this at https://chromiumcodereview.appspot.com/10559078/

SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/

Affected files:
  M     src/mksnapshot.cc


Index: src/mksnapshot.cc
===================================================================
--- src/mksnapshot.cc   (revision 11873)
+++ src/mksnapshot.cc   (working copy)
@@ -345,7 +345,7 @@
       fprintf(stderr, "Failure compiling '%s' (see above)\n", name);
       exit(1);
     }
-    Handle<Value> ret = script->Run();
+    script->Run();
     if (try_catch.HasCaught()) {
       fprintf(stderr, "Failure running '%s'\n", name);
       Local<Message> message = try_catch.Message();


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to