Merge pull request #23517 from donnadionne/new

Fixing unsafe std::move.
pull/23521/head
donnadionne 4 years ago committed by GitHub
commit e850876111
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      test/cpp/interop/xds_interop_client.cc

@ -214,7 +214,7 @@ class TestClient {
: call->simple_response.hostname();
for (auto watcher : watchers) {
watcher->RpcCompleted(call->saved_request_id, call->rpc_method,
std::move(hostname));
hostname);
}
}

Loading…
Cancel
Save