diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-06-13 15:41:43 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-06-13 15:41:43 +0200 |
commit | 15d0256e94f382b823dbb457218e1e3d2a462e16 (patch) | |
tree | 9eb25742a207e183677576c59b608ecdf471e8ac /include/command_parse.h | |
parent | 085a8a34cb0b1bd97bba76fff15820fb57aa50e4 (diff) |
Make CommandParser::cmdlist private
Diffstat (limited to 'include/command_parse.h')
-rw-r--r-- | include/command_parse.h | 2 |
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(); |