Skip to content

Commit

Permalink
[Janitor mode] Fix whitespace
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@23486 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
OpenModelica-Hudson committed Nov 20, 2014
1 parent 47269e8 commit 9eeeee1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Compiler/FrontEnd/Expression.mo
Expand Up @@ -3446,7 +3446,7 @@ algorithm
case({}) then DAE.RCONST(0.0);
case({e1}) then e1;
case({e1,e2}) then expAdd(e1,e2);
case(_)
case(_)
equation
(e1,e2) = makeSimplifySumWork(inExpLst);
then expSub(e1,e2);
Expand Down Expand Up @@ -3477,11 +3477,11 @@ algorithm
for elem in inExpLst loop
(outExp, neg_e) := match(elem, outExp, neg_e)
local DAE.Exp e1, e2, e3, e_1, e_2;
// a - b

// a - b
case(DAE.BINARY(e1,DAE.SUB(),e2),_,_)
equation
e_1 = expAdd(outExp, e1);
e_1 = expAdd(outExp, e1);
e_2 = expAdd(neg_e, e2);
then (e_1, e_2);

Expand Down

0 comments on commit 9eeeee1

Please sign in to comment.