Fix develop 060 merge

This commit is contained in:
Leonardo Alt
2019-11-20 13:49:40 +01:00
parent 389da5228e
commit 72eff30778
5 changed files with 22 additions and 22 deletions
+1 -1
View File
@@ -158,7 +158,7 @@ TerminationFinder::ControlFlow TerminationFinder::controlFlowKind(Statement cons
return ControlFlow::Break;
else if (holds_alternative<Continue>(_statement))
return ControlFlow::Continue;
else if (_statement.type() == typeid(Leave))
else if (holds_alternative<Leave>(_statement))
return ControlFlow::Leave;
else
return ControlFlow::FlowOut;