diff options
| author | 2009-09-02 00:43:25 +0000 | |
|---|---|---|
| committer | 2009-09-02 00:43:25 +0000 | |
| commit | 219993bc9018d9f0d9568330d7a972b68b785d27 (patch) | |
| tree | 9d827a0e1a2ad343ebff21fb7f692b1fd2835650 /src/modules/m_spanningtree/modules.cpp | |
| parent | Change allocation of commands/modes (diff) | |
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
Diffstat (limited to 'src/modules/m_spanningtree/modules.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/modules.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_spanningtree/modules.cpp b/src/modules/m_spanningtree/modules.cpp index 70709eb40..6c9132794 100644 --- a/src/modules/m_spanningtree/modules.cpp +++ b/src/modules/m_spanningtree/modules.cpp @@ -21,7 +21,7 @@ /* $ModDep: m_spanningtree/utils.h m_spanningtree/treeserver.h m_spanningtree/treesocket.h */ -bool TreeSocket::Modules(const std::string &prefix, std::deque<std::string> ¶ms) +bool TreeSocket::Modules(const std::string &prefix, parameterlist ¶ms) { if (params.empty()) return true; @@ -34,7 +34,7 @@ bool TreeSocket::Modules(const std::string &prefix, std::deque<std::string> &par } char strbuf[MAXBUF]; - std::deque<std::string> par; + parameterlist par; par.push_back(prefix); par.push_back(""); |
