Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
 - bug fix. Added mising case for tuples in Expression.factorsWork


git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@16348 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Willi Braun committed Jun 13, 2013
1 parent d3b84a7 commit 1304809
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Compiler/FrontEnd/Expression.mo
Original file line number Diff line number Diff line change
Expand Up @@ -2474,6 +2474,10 @@ algorithm
equation
e = Debug.bcallret1(doInverseFactors, inverseFactors, e, e);
then e::acc;
case ((e as DAE.TSUB(exp = _)),acc,_,_)
equation
e = Debug.bcallret1(doInverseFactors, inverseFactors, e, e);
then e::acc;
case ((e as DAE.SIZE(exp = _)),acc,_,_)
equation
e = Debug.bcallret1(doInverseFactors, inverseFactors, e, e);
Expand Down

0 comments on commit 1304809

Please sign in to comment.