Skip to content

Commit

Permalink
delete the unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
itikhono committed Sep 11, 2023
1 parent a42c1c2 commit 52096ae
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/core/src/pattern/matcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,16 +185,6 @@ void Matcher::clear_state() {
m_pattern_value_maps.clear();
m_matched_list.clear();
}

namespace {
std::set<std::shared_ptr<Node>> as_node_set(const std::set<std::shared_ptr<op::Label>>& label_set) {
std::set<std::shared_ptr<Node>> result;
for (const auto& label : label_set) {
result.insert(label);
}
return result;
}
} // namespace
} // namespace pattern
} // namespace pass
} // namespace ov

0 comments on commit 52096ae

Please sign in to comment.