| Index: src/compiler/node.cc
|
| diff --git a/src/compiler/node.cc b/src/compiler/node.cc
|
| index a64c8816dcbec6700d8ddf37d8f6a2b469aa4eb8..fb4ef846ab7563588cc3b36fbe2e6708bdd28035 100644
|
| --- a/src/compiler/node.cc
|
| +++ b/src/compiler/node.cc
|
| @@ -42,11 +42,6 @@ Node* Node::FindProjection(size_t projection_index) {
|
| }
|
|
|
|
|
| -std::ostream& operator<<(std::ostream& os, const Operator& op) {
|
| - return op.PrintTo(os);
|
| -}
|
| -
|
| -
|
| std::ostream& operator<<(std::ostream& os, const Node& n) {
|
| os << n.id() << ": " << *n.op();
|
| if (n.op()->InputCount() != 0) {
|
|
|