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/modules/m_spanningtree/stats.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/m_spanningtree/stats.cpp') diff --git a/src/modules/m_spanningtree/stats.cpp b/src/modules/m_spanningtree/stats.cpp index 7c9efecde..810b6dc77 100644 --- a/src/modules/m_spanningtree/stats.cpp +++ b/src/modules/m_spanningtree/stats.cpp @@ -27,7 +27,7 @@ /* $ModDep: m_spanningtree/main.h m_spanningtree/utils.h m_spanningtree/treeserver.h m_spanningtree/link.h m_spanningtree/treesocket.h */ -bool TreeSocket::Stats(const std::string &prefix, std::deque ¶ms) +bool TreeSocket::Stats(const std::string &prefix, parameterlist ¶ms) { /* Get the reply to a STATS query if it matches this servername, * and send it back as a load of PUSH queries @@ -41,7 +41,7 @@ bool TreeSocket::Stats(const std::string &prefix, std::deque ¶m User* source = this->ServerInstance->FindNick(prefix); if (source) { - std::deque par; + parameterlist par; par.push_back(prefix); par.push_back(""); DoStats(this->ServerInstance, *(params[0].c_str()), source, results); -- cgit v1.2.3