Skip to content

Commit

Permalink
- proper MetaModelica (RML) fix (RML doesn't like things thaat start …
Browse files Browse the repository at this point in the history
…with "_": _complexity)

git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@22184 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Sep 8, 2014
1 parent 102855e commit 4d1024b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Compiler/FrontEnd/Expression.mo
Expand Up @@ -8937,11 +8937,11 @@ end complexityTraverse;

protected function complexityTraverse2
input DAE.Exp exp;
input Integer _complexity;
input Integer complexity_;
output DAE.Exp outExp;
output Integer outComplexity;
algorithm
outComplexity := _complexity+complexity(exp);
outComplexity := complexity_ + complexity(exp);
outExp := exp;
end complexityTraverse2;

Expand Down

0 comments on commit 4d1024b

Please sign in to comment.