From 892eee57eecde2b876dc029c8adb8b8a59553899 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Fri, 28 Dec 2007 00:58:22 +0000 Subject: [PATCH] Removed unused variables. --- Cantera/python/src/ctfunc_methods.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cantera/python/src/ctfunc_methods.cpp b/Cantera/python/src/ctfunc_methods.cpp index fa16bc01f..e64907dc3 100644 --- a/Cantera/python/src/ctfunc_methods.cpp +++ b/Cantera/python/src/ctfunc_methods.cpp @@ -28,7 +28,7 @@ py_func_newcombo(PyObject *self, PyObject *args) static PyObject* py_func_derivative(PyObject *self, PyObject *args) { - int type, n, m; + int n; if (!PyArg_ParseTuple(args, "i:func_derivative", &n)) return NULL; int nn = func_derivative(n);