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

@@ -40,12 +40,12 @@ PROPERTY_SOURCE(App::GeoFeature, App::DocumentObject)
// Feature
//===========================================================================
GeoFeature::GeoFeature(void)
GeoFeature::GeoFeature()
{
ADD_PROPERTY_TYPE(Placement,(Base::Placement()),nullptr,Prop_NoRecompute,nullptr);
}
GeoFeature::~GeoFeature(void)
GeoFeature::~GeoFeature()
{
}
@@ -71,7 +71,7 @@ const PropertyComplexGeoData* GeoFeature::getPropertyOfGeometry() const
return nullptr;
}
PyObject* GeoFeature::getPyObject(void)
PyObject* GeoFeature::getPyObject()
{
if (PythonObject.is(Py::_None())) {
// ref counter is set to 1
@@ -87,7 +87,7 @@ std::pair<std::string,std::string> GeoFeature::getElementName(
(void)type;
std::pair<std::string,std::string> ret;
if(!name)
if(!name)
return ret;
ret.second = name;