Skip to content

Commit

Permalink
[IE][VPU]: Revert redundant kw fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxim-Doronin committed Sep 11, 2020
1 parent 0f9e58f commit dc1e7e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ namespace vpu {

void printTo(std::ostream& stream, const ngraph::NodeTypeInfo& object);

} // namespace vpu
} // namespace vpu
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const Transformations& getDefaultTransformations() {
}

std::set<NodeTypeInfo> getSupportedTypes(const Transformations& transformations) {
std::set<NodeTypeInfo> supportedTypes{};
auto supportedTypes = std::set<NodeTypeInfo>{};
for (const auto& transformation : transformations) {
supportedTypes.insert(transformation.first);
}
Expand Down

0 comments on commit dc1e7e4

Please sign in to comment.