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

@@ -43,7 +43,7 @@ FC_LOG_LEVEL_INIT("Property", true, 2)
using namespace App;
// returns a string which represent the object e.g. when printed in python
std::string PropertyContainerPy::representation(void) const
std::string PropertyContainerPy::representation() const
{
return std::string("<property container>");
}
@@ -448,7 +448,7 @@ PyObject* PropertyContainerPy::getEnumerationsOfProperty(PyObject *args)
return Py::new_reference_to(ret);
}
Py::List PropertyContainerPy::getPropertiesList(void) const
Py::List PropertyContainerPy::getPropertiesList() const
{
Py::List ret;
std::map<std::string,Property*> Map;