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
@@ -377,7 +377,7 @@ void send_function_call(
}
w.write(data);
data = move(w.str());
data = std::move(w.str());
}
}