| Index: src/ast.h
|
| diff --git a/src/ast.h b/src/ast.h
|
| index 28b0feccfa78b343aa72bb43f26c3bfb7a9a7849..80be15892e6cb0578cf65341d889164bab7c994e 100644
|
| --- a/src/ast.h
|
| +++ b/src/ast.h
|
| @@ -115,7 +115,6 @@ class BreakableStatement;
|
| class Expression;
|
| class IterationStatement;
|
| class MaterializedLiteral;
|
| -class OStream;
|
| class Statement;
|
| class TargetCollector;
|
| class TypeFeedbackOracle;
|
| @@ -2613,7 +2612,7 @@ class RegExpTree : public ZoneObject {
|
| // expression.
|
| virtual Interval CaptureRegisters() { return Interval::Empty(); }
|
| virtual void AppendToText(RegExpText* text, Zone* zone);
|
| - OStream& Print(OStream& os, Zone* zone); // NOLINT
|
| + std::ostream& Print(std::ostream& os, Zone* zone); // NOLINT
|
| #define MAKE_ASTYPE(Name) \
|
| virtual RegExp##Name* As##Name(); \
|
| virtual bool Is##Name();
|
|
|