Reviewers: Benedikt Meurer,

Message:
Committed patchset #1 (id:1) manually as 24843 (presubmit successful).

Description:
fix another static initializer

[email protected]

BUG=

Committed: https://code.google.com/p/v8/source/detail?r=24843

Please review this at https://codereview.chromium.org/666333004/

Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+2, -2 lines):
  M src/isolate.cc


Index: src/isolate.cc
diff --git a/src/isolate.cc b/src/isolate.cc
index 11ef95f382c2cd3eba13b51bcb5eb1a7b8f7f76f..1e935af68b07577a2eda4491518cc3e9ca34861c 100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -5,7 +5,6 @@
 #include <stdlib.h>

 #include <fstream>  // NOLINT(readability/streams)
-#include <iostream>  // NOLINT(readability/streams)
 #include <sstream>

 #include "src/v8.h"
@@ -1610,7 +1609,8 @@ void Isolate::Deinit() {
   }

   if (turbo_statistics() != NULL) {
-    std::cout << *turbo_statistics() << std::endl;
+    OFStream os(stdout);
+    os << *turbo_statistics() << std::endl;
   }
   if (FLAG_hydrogen_stats) GetHStatistics()->Print();



--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to