Skip to content

Commit

Permalink
fix match -> matchcontinue
Browse files Browse the repository at this point in the history
Belonging to [master]:
  - OpenModelica/OMCompiler#2306
  • Loading branch information
hkiel authored and OpenModelica-Hudson committed Mar 23, 2018
1 parent 35f216d commit 43f36d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Compiler/SimCode/SimCodeUtil.mo
Expand Up @@ -5346,7 +5346,7 @@ protected function createSingleComplexEqnCode3
output Boolean outB;
output HashSet.HashSet oht;
algorithm
(outB, oht) := match(inExp, iht)
(outB, oht) := matchcontinue(inExp, iht)
local
DAE.ComponentRef cr;
HashSet.HashSet ht;
Expand Down Expand Up @@ -5380,7 +5380,7 @@ algorithm
then (true, iht);
else
(false, iht);
end match;
end matchcontinue;
end createSingleComplexEqnCode3;

protected function createSingleArrayEqnCode
Expand Down

0 comments on commit 43f36d5

Please sign in to comment.