| Index: src/compiler/node.h
|
| diff --git a/src/compiler/node.h b/src/compiler/node.h
|
| index c3f5a532c63ae4e5f141c99455f83a2b4d67c71f..838b4957c9b852c7e215248a61130635492e5127 100644
|
| --- a/src/compiler/node.h
|
| +++ b/src/compiler/node.h
|
| @@ -61,7 +61,7 @@ class Node FINAL : public GenericNode<NodeData, Node> {
|
| Node* FindProjection(size_t projection_index);
|
| };
|
|
|
| -OStream& operator<<(OStream& os, const Node& n);
|
| +std::ostream& operator<<(std::ostream& os, const Node& n);
|
|
|
| typedef GenericGraphVisit::NullNodeVisitor<NodeData, Node> NullNodeVisitor;
|
|
|
|
|