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

@@ -69,7 +69,7 @@ PyObject* QuantityPy::toStr(PyObject* args)
return Py_BuildValue("s", ret.str().c_str());
}
PyObject* QuantityPy::PyMake(struct _typeobject*, PyObject*, PyObject*) // Python wrapper
PyObject* QuantityPy::PyMake(PyTypeObject* /*unused*/, PyObject* /*unused*/, PyObject* /*unused*/)
{
// create a new instance of QuantityPy and the Twin object
return new QuantityPy(new Quantity);