From 888e9724622c6f9cf55fe7537b76c566d0283a3d Mon Sep 17 00:00:00 2001
From: scott snyder <sss@karma>
Date: Mon, 10 Aug 2020 11:25:03 -0400
Subject: [PATCH] TrigInDetAccelerationService: Fix warning.

Having an implicit copy assigment operator with an explicit copy ctor
is deprecated.  Remove explicit copy ctor.
---
 .../TrigInDetAccelerationService/src/TrigInDetAccelerationSvc.h  | 1 -
 1 file changed, 1 deletion(-)

diff --git a/Trigger/TrigAccel/TrigInDetAccel/TrigInDetAccelerationService/src/TrigInDetAccelerationSvc.h b/Trigger/TrigAccel/TrigInDetAccel/TrigInDetAccelerationService/src/TrigInDetAccelerationSvc.h
index b778445330d2..eb338cd99cc1 100644
--- a/Trigger/TrigAccel/TrigInDetAccel/TrigInDetAccelerationService/src/TrigInDetAccelerationSvc.h
+++ b/Trigger/TrigAccel/TrigInDetAccel/TrigInDetAccelerationService/src/TrigInDetAccelerationSvc.h
@@ -61,7 +61,6 @@ class TrigInDetAccelerationSvc : public extends<AthService, ITrigInDetAccelerati
     
   public:
   PhiEtaHash(short phi, short eta, int hash) : m_phiIndex(phi), m_etaIndex(eta), m_hash(hash) {};
-  PhiEtaHash(const PhiEtaHash& p) : m_phiIndex(p.m_phiIndex), m_etaIndex(p.m_etaIndex), m_hash(p.m_hash) {}; 
     short m_phiIndex, m_etaIndex;
     int m_hash;
   };
-- 
GitLab