Fix indentation in previous patch.

This commit is contained in:
Martin Whitaker 2016-10-20 16:25:34 +01:00
parent 1f9bf656ed
commit 991d7d7582
1 changed files with 3 additions and 2 deletions

View File

@ -408,9 +408,10 @@ NexusSet* NetEvWait::nex_input(bool rem_out)
{
NexusSet*result;
if (statement_)
result = statement_->nex_input(rem_out);
result = statement_->nex_input(rem_out);
else
result = new NexusSet;
result = new NexusSet;
return result;
}