use auto type when assigning from cast or using new

This commit is contained in:
Axel Kohlmeyer
2022-04-10 18:16:36 -04:00
parent 6071376d42
commit 39b316729b
365 changed files with 1195 additions and 1233 deletions

View File

@ -238,7 +238,7 @@ void PythonImpl::command(int narg, char **arg)
// pFunc = function object for requested function
PyObject *pModule = (PyObject *) pyMain;
auto pModule = (PyObject *) pyMain;
PyObject *pFunc = PyObject_GetAttrString(pModule, pfuncs[ifunc].name);
if (!pFunc) {
@ -268,7 +268,7 @@ void PythonImpl::invoke_function(int ifunc, char *result)
PyObject *pValue;
char *str;
PyObject *pFunc = (PyObject *) pfuncs[ifunc].pFunc;
auto pFunc = (PyObject *) pfuncs[ifunc].pFunc;
// create Python tuple of input arguments