Skip to content

Commit 0e80a97

Browse files
authored
Hotfix ie_ngraph.cpp in Debug
1 parent 8791cd1 commit 0e80a97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/dnn/src/ie_ngraph.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ void InfEngineNgraphNet::createNet(Target targetId) {
162162
CV_LOG_DEBUG(NULL, "DNN/NGRAPH: Add 'Result' output: " << output_node_it->first);
163163
CV_Assert(output_node_it->second);
164164
auto out = std::make_shared<ov::op::v0::Result>(output_node_it->second->node);
165-
std::string name = output_node_it->first + (output_node_it->second->node.get_node()->get_output_size() == 1 ? "" : ".0")
165+
std::string name = output_node_it->first + (output_node_it->second->node.get_node()->get_output_size() == 1 ? "" : ".0");
166166
CV_LOG_DEBUG(NULL, "DNN-IE: Change friendly name from " << out->get_friendly_name() << " to " << name);
167167
out->set_friendly_name(name);
168168
outs.push_back(out);

0 commit comments

Comments
 (0)