| Index: src/ic/ic-state.h
|
| diff --git a/src/ic/ic-state.h b/src/ic/ic-state.h
|
| index b84bdb9a70ba628acf4d19d30b77efdb0cacbdc0..72fc865c68d1ebe221f37829f5e457bf7c12cd84 100644
|
| --- a/src/ic/ic-state.h
|
| +++ b/src/ic/ic-state.h
|
| @@ -51,7 +51,7 @@ class CallICState FINAL BASE_EMBEDDED {
|
| };
|
|
|
|
|
| -OStream& operator<<(OStream& os, const CallICState& s);
|
| +std::ostream& operator<<(std::ostream& os, const CallICState& s);
|
|
|
|
|
| // Mode to overwrite BinaryExpression values.
|
| @@ -139,7 +139,7 @@ class BinaryOpICState FINAL BASE_EMBEDDED {
|
| Isolate* isolate() const { return isolate_; }
|
|
|
| private:
|
| - friend OStream& operator<<(OStream& os, const BinaryOpICState& s);
|
| + friend std::ostream& operator<<(std::ostream& os, const BinaryOpICState& s);
|
|
|
| enum Kind { NONE, SMI, INT32, NUMBER, STRING, GENERIC };
|
|
|
| @@ -173,7 +173,7 @@ class BinaryOpICState FINAL BASE_EMBEDDED {
|
| };
|
|
|
|
|
| -OStream& operator<<(OStream& os, const BinaryOpICState& s);
|
| +std::ostream& operator<<(std::ostream& os, const BinaryOpICState& s);
|
|
|
|
|
| class CompareICState {
|
|
|