Commit 52c0827d authored by Robert Kimball's avatar Robert Kimball Committed by Scott Cyphers

fix link error for multiply-defined function (#3076)

parent ca220f7d
......@@ -292,17 +292,6 @@ TEST(pattern, graph_rewrite)
}
}
std::ostream& operator<<(std::ostream& os, const ngraph::NodeVector& nv)
{
std::vector<std::string> names;
for (auto n : nv)
{
names.push_back(n->get_name());
}
os << vector_to_string(names);
return os;
}
TEST(pattern, matcher)
{
Shape shape{};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment