From 43f36d562402d9099cfa9a47765a519f6b9c891b Mon Sep 17 00:00:00 2001 From: hkiel Date: Fri, 23 Mar 2018 10:46:12 +0100 Subject: [PATCH] fix match -> matchcontinue Belonging to [master]: - OpenModelica/OMCompiler#2306 --- Compiler/SimCode/SimCodeUtil.mo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Compiler/SimCode/SimCodeUtil.mo b/Compiler/SimCode/SimCodeUtil.mo index 5f08472d73c..cf13470bcc9 100644 --- a/Compiler/SimCode/SimCodeUtil.mo +++ b/Compiler/SimCode/SimCodeUtil.mo @@ -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; @@ -5380,7 +5380,7 @@ algorithm then (true, iht); else (false, iht); - end match; + end matchcontinue; end createSingleComplexEqnCode3; protected function createSingleArrayEqnCode