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

@@ -52,7 +52,7 @@ std::string MatrixPy::representation() const
return str.str();
}
PyObject* MatrixPy::PyMake(struct _typeobject*, PyObject*, PyObject*) // Python wrapper
PyObject* MatrixPy::PyMake(PyTypeObject* /*unused*/, PyObject* /*unused*/, PyObject* /*unused*/)
{
// create a new instance of MatrixPy and the Twin object
return new MatrixPy(new Matrix4D);