Index: src/basic-block-profiler.h |
diff --git a/src/basic-block-profiler.h b/src/basic-block-profiler.h |
index c3c8b649dccc6a7b6f860355cd295aacd61767b3..2e7ac9c8040d2b9cd963dec7d53ec427c2d38c20 100644 |
--- a/src/basic-block-profiler.h |
+++ b/src/basic-block-profiler.h |
@@ -11,7 +11,6 @@ |
#include <vector> |
#include "src/base/macros.h" |
-#include "src/globals.h" |
namespace v8 { |
namespace internal { |
@@ -59,16 +58,15 @@ |
const DataList* data_list() { return &data_list_; } |
private: |
- friend V8_EXPORT_PRIVATE std::ostream& operator<<( |
- std::ostream& os, const BasicBlockProfiler& s); |
+ friend std::ostream& operator<<(std::ostream& os, |
+ const BasicBlockProfiler& s); |
DataList data_list_; |
DISALLOW_COPY_AND_ASSIGN(BasicBlockProfiler); |
}; |
-V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os, |
- const BasicBlockProfiler& s); |
+std::ostream& operator<<(std::ostream& os, const BasicBlockProfiler& s); |
std::ostream& operator<<(std::ostream& os, const BasicBlockProfiler::Data& s); |
} // namespace internal |