Skip to content

Commit

Permalink
- fix compilation
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@12790 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Jens Frenkel committed Sep 5, 2012
1 parent 35b2426 commit b928b99
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Compiler/BackEnd/HashTableCrSimVars.mo
Expand Up @@ -28,9 +28,10 @@ public import DAE;
public import SimCode;
protected import ComponentReference;
protected import System;
protected import List;

public type Key = DAE.ComponentRef;
public type Value = list<Simcode.SimVar>;
public type Value = list<SimCode.SimVar>;

public type HashTableCrefFunctionsType = tuple<FuncHashCref,FuncCrefEqual,FuncCrefStr,FuncExpStr>;
public type HashTable = tuple<
Expand Down
6 changes: 3 additions & 3 deletions Compiler/BackEnd/SimCode.mo
Expand Up @@ -61,7 +61,7 @@ public import DAE;
public import Env;
public import HashTableExpToIndex;
public import HashTableStringToPath;
public import HashTableCrSimVars;
//public import HashTableCrSimVars;
public import Inline;
public import Interactive;
public import SCode;
Expand Down Expand Up @@ -7474,7 +7474,7 @@ algorithm
stringAlgVars, stringParamVars, stringAliasVars, extObjVars,jacVars,constVars,intConstVars,boolConstVars,stringConstVars);
end match;
end sortSimvars;

/*
protected function sortSimVars1
"function: sortSimVars1
author: Frenkel TUD 2012-09"
Expand Down Expand Up @@ -7684,7 +7684,7 @@ algorithm
fail();
end matchcontinue;
end calculateIndex;

*/
protected function fixIndex
input SimVars unfixedSimvars;
output SimVars fixedSimvars;
Expand Down

0 comments on commit b928b99

Please sign in to comment.