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

Commit efcef39

Browse files
sjoelundOpenModelica-Hudson
authored andcommitted
Fix typo causing duplicate elements to appear
Belonging to [master]: - #2099 - OpenModelica/OpenModelica-testsuite#815
1 parent 715fb85 commit efcef39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Compiler/Parsers/SimpleModelicaParser.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2367,7 +2367,7 @@ algorithm
23672367
lst2 := {};
23682368
for l2 in lst loop
23692369
try
2370-
lst2 := List.getMemberOnTrue(l1, deleted, compare)::lst2;
2370+
lst2 := List.getMemberOnTrue(l2, deleted, compare)::lst2;
23712371
else
23722372
lst2 := l2::lst2;
23732373
end try;

0 commit comments

Comments
 (0)