Revision: 24843
Author: [email protected]
Date: Thu Oct 23 12:59:48 2014 UTC
Log: fix another static initializer
[email protected]
BUG=
Review URL: https://codereview.chromium.org/666333004
https://code.google.com/p/v8/source/detail?r=24843
Modified:
/branches/bleeding_edge/src/isolate.cc
=======================================
--- /branches/bleeding_edge/src/isolate.cc Thu Oct 23 11:56:26 2014 UTC
+++ /branches/bleeding_edge/src/isolate.cc Thu Oct 23 12:59:48 2014 UTC
@@ -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 @@
}
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.