Skip to content

Commit

Permalink
- Fix compilation (double errors 2 commits ago; fixed only 1)
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@12034 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Jun 12, 2012
1 parent e505b35 commit d2a4509
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Compiler/BackEnd/BackendDAEUtil.mo
Expand Up @@ -6905,7 +6905,7 @@ author: Peter Aronsson (paronsson@wolfram.com)
"
input Option<DAE.VariableAttributes> attr;
input funcType func;
input ExtraArgType iextraArg;
input ExtraArgType extraArg;
replaceable type ExtraArgType subtypeof Any;
partial function funcType
input tuple<DAE.Exp,ExtraArgType> inTpl;
Expand All @@ -6914,13 +6914,13 @@ author: Peter Aronsson (paronsson@wolfram.com)
output Option<DAE.VariableAttributes> outAttr;
output ExtraArgType outExtraArg;
algorithm
(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;
Option<DAE.Distribution> dist;
Option<Boolean> p,fin;
ExtraArgType extraArg;
(outAttr,outExtraArg) := matchcontinue(attr,func,extraArg)
local
Option<DAE.Exp> q,u,du,min,max,i,f,n,eqbound;
Option<DAE.StateSelect> ss;
Option<DAE.Uncertainty> unc;
Option<DAE.Distribution> dist;
Option<Boolean> p,fin;
case(NONE(),_,_) then (NONE(),extraArg);
case(SOME(DAE.VAR_ATTR_REAL(q,u,du,(min,max),i,f,n,ss,unc,dist,eqbound,p,fin)),func,extraArg) equation
((q,outExtraArg)) = Expression.traverseExpOpt(q,func,extraArg);
Expand Down

0 comments on commit d2a4509

Please sign in to comment.