fix readability-*:

* readability-uppercase-literal-suffix
* readability-named-parameter
This commit is contained in:
wmayer
2023-11-15 11:22:02 +01:00
parent f539138dd9
commit 5c306f6e2a
24 changed files with 49 additions and 48 deletions

View File

@@ -38,7 +38,8 @@ std::string CoordinateSystemPy::representation() const
return {"<CoordinateSystem object>"};
}
PyObject* CoordinateSystemPy::PyMake(struct _typeobject*, PyObject*, PyObject*) // Python wrapper
PyObject*
CoordinateSystemPy::PyMake(PyTypeObject* /*unused*/, PyObject* /*unused*/, PyObject* /*unused*/)
{
// create a new instance of CoordinateSystemPy and the Twin object
return new CoordinateSystemPy(new CoordinateSystem);