Gui: remove redundant void
This commit is contained in:
@@ -95,7 +95,7 @@ inline bool Breakpoint::operator ==(const QString& fn)
|
||||
class GuiExport PythonDebugModule : public Py::ExtensionModule<PythonDebugModule>
|
||||
{
|
||||
public:
|
||||
static void init_module(void);
|
||||
static void init_module();
|
||||
|
||||
PythonDebugModule();
|
||||
virtual ~PythonDebugModule();
|
||||
@@ -113,7 +113,7 @@ private:
|
||||
class GuiExport PythonDebugStdout : public Py::PythonExtension<PythonDebugStdout>
|
||||
{
|
||||
public:
|
||||
static void init_type(void); // announce properties and methods
|
||||
static void init_type(); // announce properties and methods
|
||||
|
||||
PythonDebugStdout();
|
||||
~PythonDebugStdout();
|
||||
@@ -129,7 +129,7 @@ public:
|
||||
class GuiExport PythonDebugStderr : public Py::PythonExtension<PythonDebugStderr>
|
||||
{
|
||||
public:
|
||||
static void init_type(void); // announce properties and methods
|
||||
static void init_type(); // announce properties and methods
|
||||
|
||||
PythonDebugStderr();
|
||||
~PythonDebugStderr();
|
||||
@@ -144,7 +144,7 @@ public:
|
||||
class GuiExport PythonDebugExcept : public Py::PythonExtension<PythonDebugExcept>
|
||||
{
|
||||
public:
|
||||
static void init_type(void); // announce properties and methods
|
||||
static void init_type(); // announce properties and methods
|
||||
|
||||
PythonDebugExcept();
|
||||
~PythonDebugExcept();
|
||||
|
||||
Reference in New Issue
Block a user