diff options
| author | 2010-12-01 14:27:27 -0500 | |
|---|---|---|
| committer | 2010-12-01 14:27:27 -0500 | |
| commit | 1fec68b4cabc45efd24124b4656ad89bae264f3e (patch) | |
| tree | 62f0da91acb3c8387e47958d4bf1598a2086f670 /include | |
| parent | Remove unused variables and functions (diff) | |
Use const references
Diffstat (limited to 'include')
| -rw-r--r-- | include/command_parse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/command_parse.h b/include/command_parse.h index 6727479c4..125bab560 100644 --- a/include/command_parse.h +++ b/include/command_parse.h @@ -139,7 +139,7 @@ class CoreExport CommandParser * @param custom_translator Used to translate the parameter if the TR_CUSTOM type is found in to * @return returns the number of substitutions made. */ - int TranslateUIDs(const std::vector<TranslateType> to, const std::vector<std::string> &source, std::string &dest, bool prefix_final = false, Command* custom_translator = NULL); + int TranslateUIDs(const std::vector<TranslateType> &to, const std::vector<std::string> &source, std::string &dest, bool prefix_final = false, Command* custom_translator = NULL); }; /** A lookup table of values for multiplier characters used by |
