Core: modernize C++: redundant void arg

This commit is contained in:
wmayer
2023-08-05 00:21:01 +02:00
committed by wwmayer
parent a4929211d4
commit bb23aaf3e9
10 changed files with 20 additions and 20 deletions

View File

@@ -63,7 +63,7 @@ void ViewProviderPlacement::onChanged(const App::Property* prop)
ViewProviderGeometryObject::onChanged(prop);
}
std::vector<std::string> ViewProviderPlacement::getDisplayModes(void) const
std::vector<std::string> ViewProviderPlacement::getDisplayModes() const
{
// add modes
std::vector<std::string> StrList;
@@ -126,7 +126,7 @@ bool ViewProviderPlacement::getDetailPath(
return true;
}
bool ViewProviderPlacement::isSelectable(void) const
bool ViewProviderPlacement::isSelectable() const
{
return true;
}