Skip to content

Commit 299010e

Browse files
committed
Fix clang build
1 parent 48c2acc commit 299010e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Dataflow/Network/Module.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -926,9 +926,9 @@ void Module::sendFeedbackUpstreamAlongIncomingConnections(const Variable::Value&
926926
if (inputPort->nconnections() > 0)
927927
{
928928
auto connection = inputPort->connection(0); // only one incoming connection for input ports
929-
VariableHandle info(new Variable(Name(inputPort->id().toString()), info));
929+
VariableHandle feedback(new Variable(Name(inputPort->id().toString()), info));
930930
//TODO: extract port method
931-
connection->oport_->sendConnectionFeedback(info);
931+
connection->oport_->sendConnectionFeedback(feedback);
932932
}
933933
}
934934
}

0 commit comments

Comments
 (0)