diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-02 21:40:02 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-02 21:40:02 +0000 |
commit | 12689302349f62da8158c54d7b76b3e8cfb84e1a (patch) | |
tree | 1f35dc72207386f54acf2c0e32106c25372f7dbc | |
parent | cd76decd9b8d35d0c215d21922c46457f6226799 (diff) |
GCC 4.1 is more strict about extra qualification on members
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2727 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | include/command_parse.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/command_parse.h b/include/command_parse.h index d66726379..76e859b98 100644 --- a/include/command_parse.h +++ b/include/command_parse.h @@ -27,8 +27,8 @@ class CommandParser { private: - int CommandParser::ProcessParameters(char **command_p,char *parameters); - void CommandParser::ProcessCommand(userrec *user, char* cmd); + int ProcessParameters(char **command_p,char *parameters); + void ProcessCommand(userrec *user, char* cmd); void SetupCommandTable(); public: command_table cmdlist; |