Index: src/compiler/operator.cc |
diff --git a/src/compiler/operator.cc b/src/compiler/operator.cc |
index ae10348422cf3eeb71525c0e637225864e9fa52e..4d761fe9f4502859d1c740a72f016ffd51b80f74 100644 |
--- a/src/compiler/operator.cc |
+++ b/src/compiler/operator.cc |
@@ -44,8 +44,9 @@ std::ostream& operator<<(std::ostream& os, const Operator& op) { |
return os; |
} |
- |
-void Operator::PrintTo(std::ostream& os) const { os << mnemonic(); } |
+void Operator::PrintToImpl(std::ostream& os, PrintVerbosity verbose) const { |
+ os << mnemonic(); |
+} |
} // namespace compiler |
} // namespace internal |