diff options
| author | 2008-12-27 13:46:54 +0000 | |
|---|---|---|
| committer | 2008-12-27 13:46:54 +0000 | |
| commit | dcec1cca1737fe10ac1da1d95580942682bee889 (patch) | |
| tree | fa2233498b70befb0fc85403424d0ce74add9a84 /src/command_parse.cpp | |
| parent | Use std::set instead of std::map needlessly. (diff) | |
Fix a comment too.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10920 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/command_parse.cpp')
| -rw-r--r-- | src/command_parse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp index 6a3d48cc2..e1106cfdc 100644 --- a/src/command_parse.cpp +++ b/src/command_parse.cpp @@ -69,7 +69,7 @@ int CommandParser::LoopCall(User* user, Command* CommandObj, const std::vector<s return 0; /** Some lame ircds will weed out dupes using some shitty O(n^2) algorithm. - * By using std::map (thanks for the idea w00t) we can cut this down a ton. + * By using std::set (thanks for the idea w00t) we can cut this down a ton. * ...VOOODOOOO! */ std::set<irc::string> dupes; |
