Skip to content

Commit

Permalink
tabs
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@14045 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Jens Frenkel committed Nov 23, 2012
1 parent 4235b07 commit a07c9c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SimulationRuntime/cpp/Source/FMU/fmu_model_interface.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ fmiComponent fmiInstantiateModel(fmiString instanceName, fmiString GUID,
}
comp = (ModelInstance *)functions.allocateMemory(1, sizeof(ModelInstance));
if (comp) {
/* not fmi standard because allocate memory with new */
/* not fmi standard because allocate memory with new */
/* comp->fmuData = OBJECTCONSTRUCTOR; */
if (!comp->fmuObj) {
functions.logger(NULL, instanceName, fmiError, "error",
Expand Down Expand Up @@ -271,7 +271,7 @@ fmiStatus fmiSetString(fmiComponent c, const fmiValueReference vr[], size_t nvr,
comp->functions.logger(NULL, comp->instanceName, fmiError, "error", "fmiSetString: Out of memory.");
return fmiError;
}
*/
*/
}
/*strcpy((char*)comp->fmuData->localData[0]->stringVars[vr[i]], (char*)value[i]); */
}
Expand Down

0 comments on commit a07c9c2

Please sign in to comment.