Skip to content

Commit

Permalink
- Disable debug trace
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@8982 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed May 13, 2011
1 parent 7f0ce46 commit ab89621
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Compiler/FrontEnd/ExpressionDump.mo
Expand Up @@ -677,7 +677,7 @@ algorithm
then
s_2;

case ((e as DAE.RELATION(exp1=e1,operator=op,exp2=e2,index=i)), _,_, _)
case ((e as DAE.RELATION(exp1=e1,operator=op,exp2=e2)), _,_, _)
equation
sym = relopSymbol(op);
s1 = printExp2Str(e1, stringDelimiter, opcreffunc, opcallfunc);
Expand All @@ -687,8 +687,7 @@ algorithm
p2 = expPriority(e2);
s1_1 = parenthesize(s1, p1, p,false);
s2_1 = parenthesize(s2, p1, p,true);
index_str =intString(i);
s = stringAppendList({s1_1, sym, s2_1,"(index: ",index_str,")"});
s = stringAppendList({s1_1, sym, s2_1});
then
s;

Expand Down

0 comments on commit ab89621

Please sign in to comment.