Skip to content

Commit

Permalink
- use intEq instead of equality
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@6219 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Sep 25, 2010
1 parent a6c9f4b commit 90f8c40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/Util.mo
Expand Up @@ -4418,7 +4418,7 @@ algorithm
case(lst,{},_) then lst;
case(head::tail,x::xs,pos)
equation
equality(x=pos);
true = intEq(x, pos); // equality(x=pos);
res = filterList(tail,xs,pos+1);
then
res;
Expand Down

0 comments on commit 90f8c40

Please sign in to comment.