summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-01-02 21:40:02 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-01-02 21:40:02 +0000
commit12689302349f62da8158c54d7b76b3e8cfb84e1a (patch)
tree1f35dc72207386f54acf2c0e32106c25372f7dbc /include
parentcd76decd9b8d35d0c215d21922c46457f6226799 (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
Diffstat (limited to 'include')
-rw-r--r--include/command_parse.h4
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;