remove redundant void from Base

This commit is contained in:
berniev
2022-07-31 21:13:41 +10:00
committed by wwmayer
parent 9ddbecb864
commit ba5c312a58
7 changed files with 13 additions and 13 deletions

View File

@@ -365,7 +365,7 @@ Base::Reference<ParameterGrp> ParameterGrp::_GetGroup(const char* Name)
return rParamGrp;
}
std::vector<Base::Reference<ParameterGrp> > ParameterGrp::GetGroups(void)
std::vector<Base::Reference<ParameterGrp> > ParameterGrp::GetGroups()
{
Base::Reference<ParameterGrp> rParamGrp;
std::vector<Base::Reference<ParameterGrp> > vrParamGrp;
@@ -905,7 +905,7 @@ bool ParameterGrp::RenameGrp(const char* OldName, const char* NewName)
return true;
}
void ParameterGrp::Clear(void)
void ParameterGrp::Clear()
{
std::vector<DOMNode*> vecNodes;