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

@@ -37,12 +37,12 @@ PROPERTY_SOURCE(App::Placement, App::GeoFeature)
// Feature
//===========================================================================
Placement::Placement(void)
Placement::Placement()
{
}
Placement::~Placement(void)
Placement::~Placement()
{
}
@@ -51,7 +51,7 @@ Placement::~Placement(void)
// Python feature ---------------------------------------------------------
namespace App {
PROPERTY_SOURCE_TEMPLATE(App::PlacementPython, App::Placement)
template<> const char* App::PlacementPython::getViewProviderName(void) const {
template<> const char* App::PlacementPython::getViewProviderName() const {
return "Gui::ViewProviderPlacementPython";
}
template class AppExport FeaturePythonT<App::Placement>;