diff options
| author | 2019-07-19 13:01:59 +0100 | |
|---|---|---|
| committer | 2019-07-19 13:01:59 +0100 | |
| commit | a9989ac3978bd6e1f9e915aeed399d9db327c235 (patch) | |
| tree | cd9efae25b10cb7fb7de7178652182d7715c18dd /src/modules/m_spanningtree/postcommand.cpp | |
| parent | spanningtree: Never send a message to a raw UUID in CmdBuilder. (diff) | |
| download | inspircd++-a9989ac3978bd6e1f9e915aeed399d9db327c235.tar.gz inspircd++-a9989ac3978bd6e1f9e915aeed399d9db327c235.tar.bz2 inspircd++-a9989ac3978bd6e1f9e915aeed399d9db327c235.zip | |
Get rid of CommandBuilder::push_back.
Diffstat (limited to 'src/modules/m_spanningtree/postcommand.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/postcommand.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/m_spanningtree/postcommand.cpp b/src/modules/m_spanningtree/postcommand.cpp index fe54abde2..10cbbce82 100644 --- a/src/modules/m_spanningtree/postcommand.cpp +++ b/src/modules/m_spanningtree/postcommand.cpp @@ -45,7 +45,7 @@ void SpanningTreeUtilities::RouteCommand(TreeServer* origin, CommandBase* thiscm if (routing.type == ROUTE_TYPE_OPT_BCAST) { params.push('*'); - params.push_back(command); + params.push(command); } else if (routing.type == ROUTE_TYPE_UNICAST || routing.type == ROUTE_TYPE_OPT_UCAST) { @@ -64,8 +64,8 @@ void SpanningTreeUtilities::RouteCommand(TreeServer* origin, CommandBase* thiscm if (encap) { - params.push_back(sdest->GetID()); - params.push_back(command); + params.push(sdest->GetID()); + params.push(command); } } else @@ -83,7 +83,7 @@ void SpanningTreeUtilities::RouteCommand(TreeServer* origin, CommandBase* thiscm std::string output_text = CommandParser::TranslateUIDs(thiscmd->translation, parameters, true, thiscmd); - params.push_back(output_text); + params.push(output_text); if (routing.type == ROUTE_TYPE_MESSAGE) { |
