Skip to content

Commit

Permalink
- return integral value rather than ptr-type
Browse files Browse the repository at this point in the history
  • Loading branch information
fbergmann committed Sep 12, 2023
1 parent 760d015 commit 609a0d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sbml/SBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1087,7 +1087,7 @@ SBase::getModifiedDate(unsigned int n)
unsigned int
SBase::getNumModifiedDates()
{
return (mHistory != NULL) ? mHistory->getNumModifiedDates() : NULL;
return (mHistory != NULL) ? mHistory->getNumModifiedDates() : 0;
}


Expand Down

0 comments on commit 609a0d4

Please sign in to comment.