This is an automated email from the ASF dual-hosted git repository.

nicknezis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git


The following commit(s) were added to refs/heads/master by this push:
     new 5084318  Fixing RVO optimization (#3549)
5084318 is described below

commit 508431859be9e8b5b54cc9ebc590ce368301fcc4
Author: Nicholas Nezis <nicholas.ne...@gmail.com>
AuthorDate: Wed Jul 1 20:53:30 2020 -0400

    Fixing RVO optimization (#3549)
---
 heron/tmaster/src/cpp/manager/tmaster.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/heron/tmaster/src/cpp/manager/tmaster.cpp 
b/heron/tmaster/src/cpp/manager/tmaster.cpp
index 36b7845..f8dd296 100644
--- a/heron/tmaster/src/cpp/manager/tmaster.cpp
+++ b/heron/tmaster/src/cpp/manager/tmaster.cpp
@@ -863,7 +863,7 @@ 
std::unique_ptr<proto::tmaster::StmgrsRegistrationSummaryResponse> TMaster::GetS
     response->add_absent_stmgrs(*it);
   }
 
-  return std::move(response);
+  return response;
 }
 
 shared_ptr<proto::system::PhysicalPlan> TMaster::MakePhysicalPlan() {

Reply via email to