From ec87cb861cddd777b5a6ec3bd9408a3ba3c0c92b Mon Sep 17 00:00:00 2001
From: scott snyder <scott.snyder@cern.ch>
Date: Mon, 24 Dec 2018 21:21:06 +0100
Subject: [PATCH] TriggerMatchingTool: Fix clang warning.

clang warning: Don't use std::move in a return statement.
---
 .../TrigAnalysis/TriggerMatchingTool/Root/MatchingTool.cxx    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Trigger/TrigAnalysis/TriggerMatchingTool/Root/MatchingTool.cxx b/Trigger/TrigAnalysis/TriggerMatchingTool/Root/MatchingTool.cxx
index 8b4a2d70f739..caed48c8db15 100644
--- a/Trigger/TrigAnalysis/TriggerMatchingTool/Root/MatchingTool.cxx
+++ b/Trigger/TrigAnalysis/TriggerMatchingTool/Root/MatchingTool.cxx
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
+  Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
 */
 
 #include "xAODBase/IParticle.h"
@@ -218,7 +218,7 @@ namespace Trig {
     ATH_MSG_DEBUG("overall matching result: " << result);
     
     match_result->m_matched = result;
-    return std::move(match_result);
+    return match_result;
   }
 
   void MatchingTool::setCondition(unsigned int condition) {
-- 
GitLab