remove redundant void from Base

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

View File

@@ -420,7 +420,7 @@ Py::Object RotationPy::getRawAxis() const
return Py::Vector(axis);
}
Py::Object RotationPy::getAxis(void) const
Py::Object RotationPy::getAxis() const
{
Base::Vector3d axis; double angle;
this->getRotationPtr()->getValue(axis, angle);