remove redundant void

This commit is contained in:
berniev
2022-07-31 14:28:37 +10:00
committed by wwmayer
parent 474981d7b6
commit 85170b2879
75 changed files with 519 additions and 519 deletions

View File

@@ -201,7 +201,7 @@ void PropertyPath::setValue(const char * Path)
hasSetValue();
}
const boost::filesystem::path &PropertyPath::getValue(void) const
const boost::filesystem::path &PropertyPath::getValue() const
{
return _cValue;
}
@@ -2748,7 +2748,7 @@ unsigned int PropertyMaterialList::getMemSize() const
TYPESYSTEM_SOURCE(App::PropertyPersistentObject , App::PropertyString)
PyObject *PropertyPersistentObject::getPyObject(void){
PyObject *PropertyPersistentObject::getPyObject(){
if(_pObject)
return _pObject->getPyObject();
return inherited::getPyObject();
@@ -2774,7 +2774,7 @@ void PropertyPersistentObject::Restore(Base::XMLReader &reader){
reader.readEndElement(ELEMENT_PERSISTENT_OBJ);
}
Property *PropertyPersistentObject::Copy(void) const{
Property *PropertyPersistentObject::Copy() const{
auto *p= new PropertyPersistentObject();
p->_cValue = _cValue;
p->_pObject = _pObject;