Skip to content
Snippets Groups Projects
Commit a8337fd1 authored by Olivier BICHLER's avatar Olivier BICHLER
Browse files

Fixed bug

parent b92b7f38
No related branches found
No related tags found
No related merge requests found
......@@ -895,8 +895,8 @@ void Aidge::GraphView::updateInputsOutputsNew(std::shared_ptr<Node> newNode) {
for (const std::shared_ptr<Node>& parent : newNode->getParents()) {
// Check that newNode parent is in current GraphView
if (mNodes.find(parent) != mNodes.end()) {
IOIndex_t outputIdx = 0;
for (auto orderedChilds : parent->getOrderedChildren()) {
IOIndex_t outputIdx = 0;
for (auto ch_ptr : orderedChilds) {
// If newNode is connected to it
if (ch_ptr == newNode) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment