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

@@ -127,7 +127,7 @@ void PropertyPostDataObject::setValue(const vtkSmartPointer<vtkDataObject> &ds)
hasSetValue();
}
const vtkSmartPointer<vtkDataObject> &PropertyPostDataObject::getValue(void) const
const vtkSmartPointer<vtkDataObject> &PropertyPostDataObject::getValue() const
{
return m_dataObject;
}
@@ -154,7 +154,7 @@ int PropertyPostDataObject::getDataType()
}
PyObject *PropertyPostDataObject::getPyObject(void)
PyObject *PropertyPostDataObject::getPyObject()
{
//TODO: fetch the vtk python object from the data set and return it
return Py::new_reference_to(Py::None());
@@ -164,7 +164,7 @@ void PropertyPostDataObject::setPyObject(PyObject * /*value*/)
{
}
App::Property *PropertyPostDataObject::Copy(void) const
App::Property *PropertyPostDataObject::Copy() const
{
PropertyPostDataObject *prop = new PropertyPostDataObject();
if (m_dataObject) {
@@ -218,7 +218,7 @@ void PropertyPostDataObject::Paste(const App::Property &from)
hasSetValue();
}
unsigned int PropertyPostDataObject::getMemSize(void) const
unsigned int PropertyPostDataObject::getMemSize() const
{
return m_dataObject ? m_dataObject->GetActualMemorySize() : 0;
}