remove std::move
clang-tidy reports this is trivially copyable and thus std::move has no effect. Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
a8c77a6fba
commit
00f8d65a17
@ -80,7 +80,7 @@ Response::VFmtError(enum ack code,
|
||||
Fmt(FMT_STRING("ACK [{}@{}] {{{}}} "),
|
||||
(int)code, list_index, command);
|
||||
|
||||
VFmt(format_str, std::move(args));
|
||||
VFmt(format_str, args);
|
||||
|
||||
Write("\n");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user