Skip to content

Commit

Permalink
[Janitor mode] Fix whitespace
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@24878 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
OpenModelica-Hudson committed Mar 3, 2015
1 parent 293a54f commit cf0390d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions SimulationRuntime/cpp/Core/Math/ArrayOperations.cpp
Expand Up @@ -298,10 +298,10 @@ void convertBoolToInt(BaseArray<bool>& a, BaseArray<int>& b)
int* dest_data = b.getData();
for (int i = 0; (numEle > 0) && (i <= numEle); i++)
{
if(source_data[i])
dest_data[i]=1;
else
dest_data[i]=0;
if(source_data[i])
dest_data[i]=1;
else
dest_data[i]=0;
}
}

Expand Down

0 comments on commit cf0390d

Please sign in to comment.