diff options
| author | 2010-12-01 14:27:27 -0500 | |
|---|---|---|
| committer | 2010-12-01 14:27:27 -0500 | |
| commit | 1fec68b4cabc45efd24124b4656ad89bae264f3e (patch) | |
| tree | 62f0da91acb3c8387e47958d4bf1598a2086f670 /src/command_parse.cpp | |
| parent | Remove unused variables and functions (diff) | |
Use const references
Diffstat (limited to 'src/command_parse.cpp')
| -rw-r--r-- | src/command_parse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp index 2c1827841..88ad73c93 100644 --- a/src/command_parse.cpp +++ b/src/command_parse.cpp @@ -374,7 +374,7 @@ CommandParser::CommandParser() para.resize(128); } -int CommandParser::TranslateUIDs(const std::vector<TranslateType> to, const std::vector<std::string> &source, std::string &dest, bool prefix_final, Command* custom_translator) +int CommandParser::TranslateUIDs(const std::vector<TranslateType> &to, const std::vector<std::string> &source, std::string &dest, bool prefix_final, Command* custom_translator) { std::vector<TranslateType>::const_iterator types = to.begin(); User* user = NULL; |
