Skip to content

Commit

Permalink
- bugfix simulation_result_mat
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@8663 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Jens Frenkel committed Apr 15, 2011
1 parent 20c8860 commit 1dab30d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c_runtime/simulation_result_mat.cpp
Expand Up @@ -416,7 +416,7 @@ void simulation_result_mat::generateDataInfo(int32_t* &dataInfo,
map<void*,int>::iterator it = indx_map.find((void*)globalData->boolVariables.alias[i].alias);
if (it == indx_map.end()) {
it = indx_parammap.find((void*)globalData->boolVariables.alias[i].alias);
assert(it == indx_parammap.end());
assert(it != indx_parammap.end());
table = 1;
} else {
table = 2;
Expand Down

0 comments on commit 1dab30d

Please sign in to comment.