Skip to content

Commit

Permalink
- Fix merging compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
sjoelund committed Nov 9, 2010
1 parent 75076dc commit a8cbf2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Compiler/Static.mo
Expand Up @@ -4479,11 +4479,11 @@ algorithm
list<DAE.Dimension> rest;
case ({}) then true;
case ({_}) then true;
case ({dim1, dim2}) then Exp.dimensionsEqual(dim1, dim2);
case ({dim1, dim2}) then Expression.dimensionsEqual(dim1, dim2);
case ((dim1 :: (dim2 :: rest)))
equation
res = sameDimensions3((dim2 :: rest));
res2 = Exp.dimensionsEqual(dim1, dim2);
res2 = Expression.dimensionsEqual(dim1, dim2);
res_1 = boolAnd(res, res2);
then
res_1;
Expand Down

0 comments on commit a8cbf2c

Please sign in to comment.