qualify all calls to std::move

This commit is contained in:
Martin Michelsen
2023-05-15 23:46:19 -07:00
parent f813ed68df
commit 695e53a714
26 changed files with 145 additions and 141 deletions
+1 -1
View File
@@ -237,7 +237,7 @@ Channel::Message Channel::recv(bool print_contents) {
return {
.command = header.command(this->version),
.flag = header.flag(this->version),
.data = move(command_data),
.data = std::move(command_data),
};
}