Skip to content

Commit

Permalink
Fix uninitialized value in NFEvalFunction
Browse files Browse the repository at this point in the history
  • Loading branch information
perost committed Jan 22, 2021
1 parent b8eadb5 commit 60f3fc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OMCompiler/Compiler/NFFrontEnd/NFEvalFunction.mo
Expand Up @@ -803,7 +803,7 @@ function evaluateFor
input Option<Expression> range;
input list<Statement> forBody;
input DAE.ElementSource source;
output FlowControl ctrl;
output FlowControl ctrl = FlowControl.NEXT;
protected
RangeIterator range_iter;
Mutable<Expression> iter_exp;
Expand Down

0 comments on commit 60f3fc1

Please sign in to comment.