aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/util/cli_call_test.cc
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-09-03 02:29:30 +0200
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-09-03 02:29:30 +0200
commit59588c616223c64834326b206865664403a647fe (patch)
treecfb637b98d70ad9f7ad4b83c6adf598d327deae9 /test/cpp/util/cli_call_test.cc
parentddb58ea560b8f03b017b1a9e68a37fedc37e6d3e (diff)
Removing pessimizing moves.
Pass #2.
Diffstat (limited to 'test/cpp/util/cli_call_test.cc')
-rw-r--r--test/cpp/util/cli_call_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/util/cli_call_test.cc b/test/cpp/util/cli_call_test.cc
index b4133aa71a..9c8d59987e 100644
--- a/test/cpp/util/cli_call_test.cc
+++ b/test/cpp/util/cli_call_test.cc
@@ -90,7 +90,7 @@ class CliCallTest : public ::testing::Test {
void ResetStub() {
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::shared_ptr<Channel> channel_;