1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Polishing: generate more warnings and make code warnings-free.

This commit is contained in:
anozdrin/alik@alik.
2006-11-17 16:45:29 +03:00
parent 8c55f4743d
commit c6cd61a5cc
8 changed files with 39 additions and 17 deletions

View File

@ -37,6 +37,10 @@
class Show_instances : public Command
{
public:
Show_instances()
{ }
public:
int execute(st_net *net, ulong connection_id);
@ -53,6 +57,10 @@ private:
class Flush_instances : public Command
{
public:
Flush_instances()
{ }
public:
int execute(st_net *net, ulong connection_id);
};
@ -311,6 +319,10 @@ private:
class Set_option : public Abstract_option_cmd
{
public:
Set_option()
{ }
protected:
virtual bool parse_args(const char **text);
virtual int process_option(Instance *instance, Named_value *option);
@ -324,6 +336,10 @@ protected:
class Unset_option: public Abstract_option_cmd
{
public:
Unset_option()
{ }
protected:
virtual bool parse_args(const char **text);
virtual int process_option(Instance *instance, Named_value *option);
@ -341,6 +357,10 @@ protected:
class Syntax_error : public Command
{
public:
Syntax_error()
{ }
public:
int execute(st_net *net, ulong connection_id);
};