Skip to content
Snippets Groups Projects
Commit 2d8c6b37 authored by Nicolas Noble's avatar Nicolas Noble
Browse files

Merge pull request #3554 from vjpai/stt

Remove one pessimizing std::move
parents 10ce383e fa6e70ff
No related branches found
No related tags found
No related merge requests found
......@@ -145,7 +145,7 @@ class End2endTest : public ::testing::Test {
void ResetStub() {
std::shared_ptr<Channel> channel = CreateChannel(
server_address_.str(), InsecureCredentials());
stub_ = std::move(grpc::cpp::test::util::TestService::NewStub(channel));
stub_ = grpc::cpp::test::util::TestService::NewStub(channel);
}
std::unique_ptr<grpc::cpp::test::util::TestService::Stub> stub_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment