Skip to content
This repository was archived by the owner on May 18, 2019. It is now read-only.

Commit 43f36d5

Browse files
hkielOpenModelica-Hudson
authored andcommitted
fix match -> matchcontinue
Belonging to [master]: - #2306
1 parent 35f216d commit 43f36d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Compiler/SimCode/SimCodeUtil.mo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5346,7 +5346,7 @@ protected function createSingleComplexEqnCode3
53465346
output Boolean outB;
53475347
output HashSet.HashSet oht;
53485348
algorithm
5349-
(outB, oht) := match(inExp, iht)
5349+
(outB, oht) := matchcontinue(inExp, iht)
53505350
local
53515351
DAE.ComponentRef cr;
53525352
HashSet.HashSet ht;
@@ -5380,7 +5380,7 @@ algorithm
53805380
then (true, iht);
53815381
else
53825382
(false, iht);
5383-
end match;
5383+
end matchcontinue;
53845384
end createSingleComplexEqnCode3;
53855385

53865386
protected function createSingleArrayEqnCode

0 commit comments

Comments
 (0)