Skip to content

Commit

Permalink
- warning
Browse files Browse the repository at this point in the history
  • Loading branch information
fbergmann committed Dec 15, 2014
1 parent 1bf10a9 commit 4e615b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SpatialSBML/setInfoFunction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ void oneStepSearch(int step_count, int step_k, int X, int Y, int Z, int Xindex,

bool containsSpatialMath(const ASTNode* node, const Model* model)
{
for (int i = 0; i < node->getNumChildren(); ++i)
for (int i = 0; i < (int)node->getNumChildren(); ++i)
{
if (containsSpatialMath(node->getChild(i), model))
return true;
Expand Down

0 comments on commit 4e615b6

Please sign in to comment.