diff --git a/source/CallGraph.cpp b/source/CallGraph.cpp index 64c885dd..ae4bd1fa 100644 --- a/source/CallGraph.cpp +++ b/source/CallGraph.cpp @@ -877,7 +877,7 @@ std::ostream& operator<<(std::ostream& out, const CallTarget& call_target) { out << ", receiver_type=`" << show(call_target.receiver_type()) << "`, overrides={"; for (const auto* method : call_target.overrides()) { - out << "`" << method << "`, "; + out << "`" << method->show() << "`, "; } out << "}"; }