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/privmsg.cpp | |
| parent | Change allocation of commands/modes (diff) | |
| download | inspircd++-219993bc9018d9f0d9568330d7a972b68b785d27.tar.gz inspircd++-219993bc9018d9f0d9568330d7a972b68b785d27.tar.bz2 inspircd++-219993bc9018d9f0d9568330d7a972b68b785d27.zip | |
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/privmsg.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/privmsg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/privmsg.cpp b/src/modules/m_spanningtree/privmsg.cpp index b9b62ad00..67e4a0cdd 100644 --- a/src/modules/m_spanningtree/privmsg.cpp +++ b/src/modules/m_spanningtree/privmsg.cpp @@ -23,7 +23,7 @@ /** remote MOTD. leet, huh? */ -bool TreeSocket::ServerMessage(const std::string &messagetype, const std::string &prefix, std::deque<std::string> ¶ms, const std::string &sourceserv) +bool TreeSocket::ServerMessage(const std::string &messagetype, const std::string &prefix, parameterlist ¶ms, const std::string &sourceserv) { if (params.size() >= 2) { |
