Skip to content

Commit

Permalink
- Fix names of outputs to correct ones
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@12033 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Jun 12, 2012
1 parent af510b4 commit e505b35
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Compiler/BackEnd/BackendDAEUtil.mo
Expand Up @@ -6904,7 +6904,7 @@ public function traverseBackendDAEVarAttr
author: Peter Aronsson (paronsson@wolfram.com)
"
input Option<DAE.VariableAttributes> attr;
input funcType func;
input funcType func;
input ExtraArgType iextraArg;
replaceable type ExtraArgType subtypeof Any;
partial function funcType
Expand All @@ -6914,7 +6914,7 @@ author: Peter Aronsson (paronsson@wolfram.com)
output Option<DAE.VariableAttributes> outAttr;
output ExtraArgType outExtraArg;
algorithm
(outAttr,outExtraArg) := matchcontinue(attr,func,extraArg)
(outAttr,outExtraArg) := matchcontinue(attr,func,iextraArg)
local Option<DAE.Exp> q,u,du,min,max,i,f,n,eqbound;
Option<DAE.StateSelect> ss;
Option<DAE.Uncertainty> unc;
Expand Down Expand Up @@ -8564,7 +8564,7 @@ public function setAlgorithms "set algorithms in BackendDAE"
input array<DAE.Algorithm> algs;
output BackendDAE.BackendDAE outDae;
algorithm
outDAE := matchcontinue(dae,algs)
outDae := matchcontinue(dae,algs)
local
Variables kv,eo;
AliasVariables av;
Expand Down

0 comments on commit e505b35

Please sign in to comment.