We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48c2acc commit 299010eCopy full SHA for 299010e
src/Dataflow/Network/Module.cc
@@ -926,9 +926,9 @@ void Module::sendFeedbackUpstreamAlongIncomingConnections(const Variable::Value&
926
if (inputPort->nconnections() > 0)
927
{
928
auto connection = inputPort->connection(0); // only one incoming connection for input ports
929
- VariableHandle info(new Variable(Name(inputPort->id().toString()), info));
+ VariableHandle feedback(new Variable(Name(inputPort->id().toString()), info));
930
//TODO: extract port method
931
- connection->oport_->sendConnectionFeedback(info);
+ connection->oport_->sendConnectionFeedback(feedback);
932
}
933
934
0 commit comments