diff --git a/Compiler/FrontEnd/Expression.mo b/Compiler/FrontEnd/Expression.mo index 856e38500f3..794381cb64d 100644 --- a/Compiler/FrontEnd/Expression.mo +++ b/Compiler/FrontEnd/Expression.mo @@ -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;