| 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();
|
|
|
|
|