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

Changed params parameter of Command's Execute() from std::vector<std::string> to std::vector<ci::string>, seems to have no ill effects but may require some testing to be sure.

Also a few minor cleanups here and there.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2392 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
cyberbotx
2009-07-25 00:37:43 +00:00
parent 443654f15b
commit b2a57b0974
120 changed files with 777 additions and 851 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ Command::~Command()
}
}
CommandReturn Command::Execute(User *u, std::vector<std::string> &) { return MOD_CONT; }
CommandReturn Command::Execute(User *u, std::vector<ci::string> &) { return MOD_CONT; }
bool Command::OnHelp(User *u, const ci::string &subcommand) { return false; }