aboutsummaryrefslogtreecommitdiffstats
path: root/include/command_parse.h
diff options
context:
space:
mode:
authorGravatar Attila Molnar2014-06-13 15:41:43 +0200
committerGravatar Attila Molnar2014-06-13 15:41:43 +0200
commit15d0256e94f382b823dbb457218e1e3d2a462e16 (patch)
tree9eb25742a207e183677576c59b608ecdf471e8ac /include/command_parse.h
parentAdd CommandParser::GetCommands() and typedef CommandMap and use it instead of... (diff)
Make CommandParser::cmdlist private
Diffstat (limited to 'include/command_parse.h')
-rw-r--r--include/command_parse.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/command_parse.h b/include/command_parse.h
index bdbc12757..2abbdb607 100644
--- a/include/command_parse.h
+++ b/include/command_parse.h
@@ -39,11 +39,11 @@ class CoreExport CommandParser
*/
void ProcessCommand(LocalUser* user, std::string& cmd);
- public:
/** Command list, a hash_map of command names to Command*
*/
Commandtable cmdlist;
+ public:
/** Default constructor.
*/
CommandParser();