Skip to content

Commit f8629e2

Browse files
committed
- Disable failtraces that are not useful.
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@4672 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
1 parent c3f3c64 commit f8629e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Compiler/Types.mo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5488,13 +5488,13 @@ algorithm
54885488
case ((DAE.T_TUPLE(tys),optPath))
54895489
equation
54905490
(dummyExpList,dummyBoxedTypeList) = makeDummyExpAndTypeLists(tys);
5491-
(_,tys,_) = matchTypeTuple(dummyExpList, tys, dummyBoxedTypeList, {}, matchTypeRegular, true);
5491+
(_,tys,_) = matchTypeTuple(dummyExpList, tys, dummyBoxedTypeList, {}, matchTypeRegular, false);
54925492
then ((DAE.T_TUPLE(tys),optPath));
54935493
case (ty as (DAE.T_NORETCALL,_)) then ty;
54945494
case ty1
54955495
equation
54965496
({e},{ty2}) = makeDummyExpAndTypeLists({ty1});
5497-
(_,ty) = matchType(e, ty1, ty2, true);
5497+
(_,ty) = matchType(e, ty1, ty2, false);
54985498
then ty;
54995499
end matchcontinue;
55005500
end makeFunctionPolymorphicReferenceResType;

0 commit comments

Comments
 (0)