Commit 00f8d65a authored by Rosen Penev's avatar Rosen Penev

remove std::move

clang-tidy reports this is trivially copyable and thus std::move has no effect. Signed-off-by: 's avatarRosen Penev <rosenp@gmail.com>
parent a8c77a6f
......@@ -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");
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment