Skip to content

Commit

Permalink
- fix bootstrapping
Browse files Browse the repository at this point in the history
- fix UTF-8 encoding

git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@22921 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Oct 24, 2014
1 parent 42b5aeb commit 51a2318
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Compiler/Script/StaticScript.mo
Expand Up @@ -322,7 +322,7 @@ public function elabCallInteractive "This function elaborates the functions defi
(cache,Expression.makePureBuiltinCall("translateModelCPP",
{DAE.CODE(Absyn.C_TYPENAME(className),DAE.T_UNKNOWN_DEFAULT),filenameprefix},DAE.T_STRING_DEFAULT),DAE.PROP(recordtype,DAE.C_VAR()),SOME(st));

case (cache,env,Absyn.CREF_IDENT(name = "translateModelFMU"),{Absyn.CREF(componentRef = cr), fmuversion, filenameprefix},args,impl,SOME(st),pre,_)
case (cache,env,Absyn.CREF_IDENT(name = "translateModelFMU"),{Absyn.CREF(componentRef = cr)},args,impl,SOME(st),pre,_)
equation
className = Absyn.crefToPath(cr);
cname_str = Absyn.pathString(className);
Expand Down
6 changes: 3 additions & 3 deletions SimulationRuntime/cpp/Include/Core/DataExchange/ISimTable.h
Expand Up @@ -9,11 +9,11 @@ class ISimTable

virtual ~ISimTable() {};

// Fügt ein neues Wertepaar in die tabel ein
// Fügt ein neues Wertepaar in die tabel ein
virtual void Add(double x , double y) = 0;
// Füllt die Table mit einem Array
// Füllt die Table mit einem Array
virtual void Assign(unsigned int size_x,unsigned int size_y,double data[])=0;
// Gibt eine Referenz auf die internen Daten zurück
// Gibt eine Referenz auf die internen Daten zurück
virtual multi_array_ref<double,2> getValue() = 0;

};

0 comments on commit 51a2318

Please sign in to comment.