From e39565a829236af4d474c242783b7ed30755d8da Mon Sep 17 00:00:00 2001 From: scott snyder <sss@karma> Date: Mon, 7 Dec 2020 10:24:57 -0500 Subject: [PATCH] InDetTrackSelectionTool: Fix compilation with gcc11. Can't use full template-id as a ctor name. --- .../InDetTrackSelectionTool/Root/InDetTrackAccessor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/InnerDetector/InDetRecTools/InDetTrackSelectionTool/Root/InDetTrackAccessor.h b/InnerDetector/InDetRecTools/InDetTrackSelectionTool/Root/InDetTrackAccessor.h index f7891ef01b0..0014795a566 100644 --- a/InnerDetector/InDetRecTools/InDetTrackSelectionTool/Root/InDetTrackAccessor.h +++ b/InnerDetector/InDetRecTools/InDetTrackSelectionTool/Root/InDetTrackAccessor.h @@ -1,7 +1,7 @@ // -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration */ // InDetTrackAccessor.h @@ -89,7 +89,7 @@ namespace InDet { template <size_t index_i, size_t index_j> class ParamCovAccessor : public virtual TrackAccessor { public: - ParamCovAccessor<index_i, index_j>(const asg::IAsgTool*); + ParamCovAccessor(const asg::IAsgTool*); StatusCode access ( const xAOD::TrackParticle& track, const xAOD::Vertex* vertex = 0 ); #ifndef XAOD_ANALYSIS -- GitLab