diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2015-10-23 13:34:37 +0100 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2015-10-23 13:46:55 +0100 |
| commit | 5118e13aeef461bbaf2b86cb5d46331b9cacc061 (patch) | |
| tree | 435c5836c7c8ec9df735d97d046fa88cf759d92e /src/command_manager.cc | |
| parent | e7152bad56906838fb306aee15b04ab778f2c69c (diff) | |
Remove useless std::move
Diffstat (limited to 'src/command_manager.cc')
| -rw-r--r-- | src/command_manager.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command_manager.cc b/src/command_manager.cc index 0c8613f2..03621184 100644 --- a/src/command_manager.cc +++ b/src/command_manager.cc @@ -310,7 +310,7 @@ TokenList parse(StringView line) if (not str.empty()) result.emplace_back(Token::Type::Raw, start, reader.pos, - coord, std::move(unescape(str, "%", '\\'))); + coord, unescape(str, "%", '\\')); } if (is_command_separator(*reader)) |
