Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(419)

Unified Diff: src/isolate.cc

Issue 666333004: fix another static initializer (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698