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
@@ -207,5 +207,5 @@ std::string prepend_command_header(
throw logic_error("unimplemented game version in prepend_command_header");
}
ret.write(data);
return move(ret.str());
return std::move(ret.str());
}