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