remove redundant void
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user