From a280b89b6fe0d789b742ebe727ec4bccbb639ffe Mon Sep 17 00:00:00 2001 From: "dcarney@chromium.org" Date: Thu, 23 Oct 2014 12:59:48 +0000 Subject: [PATCH] fix another static initializer TBR=bmeurer@chromium.org BUG= Review URL: https://codereview.chromium.org/666333004 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@24843 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/isolate.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/isolate.cc b/src/isolate.cc index 11ef95f..1e935af 100644 --- a/src/isolate.cc +++ b/src/isolate.cc @@ -5,7 +5,6 @@ #include #include // NOLINT(readability/streams) -#include // NOLINT(readability/streams) #include #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(); -- 2.7.4