diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-09-02 16:32:00 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-09-02 16:32:00 +0200 |
commit | 01a6b5d21c8a24a133693c7c65779cfa78fc164d (patch) | |
tree | 536bdd5eba63f6cb0a64742b72349bc0b67ee33a /src | |
parent | 0140bc21056b4c7f6ede16cdbf0563b0af566dbf (diff) |
Change mode_sequence to be a const ref in ModeParser::Process()
Also change the signature of DisplayListModes() to accept a const ref
Diffstat (limited to 'src')
-rw-r--r-- | src/mode.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mode.cpp b/src/mode.cpp index d24346e59..4c31a94d7 100644 --- a/src/mode.cpp +++ b/src/mode.cpp @@ -403,7 +403,7 @@ void ModeParser::Process(const std::vector<std::string>& parameters, User* user, return; } - std::string mode_sequence = parameters[1]; + const std::string& mode_sequence = parameters[1]; std::string output_mode; std::string output_parameters; @@ -512,7 +512,7 @@ void ModeParser::Process(const std::vector<std::string>& parameters, User* user, } } -void ModeParser::DisplayListModes(User* user, Channel* chan, std::string &mode_sequence) +void ModeParser::DisplayListModes(User* user, Channel* chan, const std::string& mode_sequence) { seq++; |