1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 20:26:39 +02:00

Made Command::Execute's params const

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2644 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Adam-
2009-11-12 00:28:05 +00:00
parent d16f4930f4
commit 848c0aaa21
114 changed files with 253 additions and 259 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ Command::~Command()
}
}
CommandReturn Command::Execute(User *u, std::vector<ci::string> &) { return MOD_CONT; }
CommandReturn Command::Execute(User *u, const std::vector<ci::string> &) { return MOD_CONT; }
bool Command::OnHelp(User *u, const ci::string &subcommand) { return false; }