summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-06-13 15:41:43 +0200
committerAttila Molnar <attilamolnar@hush.com>2014-06-13 15:41:43 +0200
commit15d0256e94f382b823dbb457218e1e3d2a462e16 (patch)
tree9eb25742a207e183677576c59b608ecdf471e8ac /include
parent085a8a34cb0b1bd97bba76fff15820fb57aa50e4 (diff)
Make CommandParser::cmdlist private
Diffstat (limited to 'include')
-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();