User tasks have empty nex_output().
This patch matches what is done in the development branch and fixes the reported bug.
This commit is contained in:
parent
8a1543aaaf
commit
b7e7d3cb04
|
|
@ -159,6 +159,15 @@ void NetSTask::nex_output(NexusSet&out)
|
|||
{
|
||||
}
|
||||
|
||||
/*
|
||||
* Consider a task call to not have any outputs. This is not quite
|
||||
* right, we should be listing as outputs all the output ports, but for
|
||||
* the purposes that this method is used, this will do for now.
|
||||
*/
|
||||
void NetUTask::nex_output(NexusSet&out)
|
||||
{
|
||||
}
|
||||
|
||||
void NetWhile::nex_output(NexusSet&out)
|
||||
{
|
||||
if (proc_ != 0)
|
||||
|
|
|
|||
Loading…
Reference in New Issue