From 219993bc9018d9f0d9568330d7a972b68b785d27 Mon Sep 17 00:00:00 2001 From: danieldg Date: Wed, 2 Sep 2009 00:43:25 +0000 Subject: Replace std::deque with std::vector in spanningtree and related modules git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11593 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/command_parse.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/command_parse.cpp') diff --git a/src/command_parse.cpp b/src/command_parse.cpp index a76ca2d4f..b446d2b9a 100644 --- a/src/command_parse.cpp +++ b/src/command_parse.cpp @@ -607,10 +607,10 @@ void CommandParser::SetupCommandTable() this->CreateCommand(new CommandReload(ServerInstance)); } -int CommandParser::TranslateUIDs(const std::deque to, const std::deque &source, std::string &dest) +int CommandParser::TranslateUIDs(const std::vector to, const std::vector &source, std::string &dest) { - std::deque::const_iterator items = source.begin(); - std::deque::const_iterator types = to.begin(); + std::vector::const_iterator items = source.begin(); + std::vector::const_iterator types = to.begin(); User* user = NULL; int translations = 0; dest.clear(); -- cgit v1.3.1-10-gc9f91