Mod: redundant void 2

This commit is contained in:
berniev
2022-08-07 20:05:16 +10:00
committed by wwmayer
parent 311abcc43e
commit da9ebc572f
805 changed files with 3787 additions and 3787 deletions

View File

@@ -74,12 +74,12 @@ Constraint::Constraint()
tag = gen();
}
Constraint *Constraint::clone(void) const
Constraint *Constraint::clone() const
{
return new Constraint(*this);
}
Constraint *Constraint::copy(void) const
Constraint *Constraint::copy() const
{
Constraint *temp = new Constraint();
temp->Value = this->Value;
@@ -102,7 +102,7 @@ Constraint *Constraint::copy(void) const
return temp;
}
PyObject *Constraint::getPyObject(void)
PyObject *Constraint::getPyObject()
{
return new ConstraintPy(new Constraint(*this));
}
@@ -140,7 +140,7 @@ Quantity Constraint::getPresentationValue() const
return quantity;
}
unsigned int Constraint::getMemSize (void) const
unsigned int Constraint::getMemSize () const
{
return 0;
}