fix -Wextra in FreeCADGui

This commit is contained in:
wmayer
2016-09-21 20:54:52 +02:00
parent f50e5a552b
commit 1e6dcabefc
106 changed files with 882 additions and 496 deletions

View File

@@ -133,22 +133,22 @@ PythonDebugModule::~PythonDebugModule()
{
}
Py::Object PythonDebugModule::getFunctionCallCount(const Py::Tuple &a)
Py::Object PythonDebugModule::getFunctionCallCount(const Py::Tuple &)
{
return Py::None();
}
Py::Object PythonDebugModule::getExceptionCount(const Py::Tuple &a)
Py::Object PythonDebugModule::getExceptionCount(const Py::Tuple &)
{
return Py::None();
}
Py::Object PythonDebugModule::getLineCount(const Py::Tuple &a)
Py::Object PythonDebugModule::getLineCount(const Py::Tuple &)
{
return Py::None();
}
Py::Object PythonDebugModule::getFunctionReturnCount(const Py::Tuple &a)
Py::Object PythonDebugModule::getFunctionReturnCount(const Py::Tuple &)
{
return Py::None();
}
@@ -565,7 +565,7 @@ void PythonDebugger::hideDebugMarker(const QString& fn)
// http://code.google.com/p/idapython/source/browse/trunk/python.cpp
// http://www.koders.com/cpp/fid191F7B13CF73133935A7A2E18B7BF43ACC6D1784.aspx?s=PyEval_SetTrace
// http://stuff.mit.edu/afs/sipb/project/python/src/python2.2-2.2.2/Modules/_hotshot.c
int PythonDebugger::tracer_callback(PyObject *obj, PyFrameObject *frame, int what, PyObject *arg)
int PythonDebugger::tracer_callback(PyObject *obj, PyFrameObject *frame, int what, PyObject * /*arg*/)
{
PythonDebuggerPy* self = static_cast<PythonDebuggerPy*>(obj);
PythonDebugger* dbg = self->dbg;