From b65c651c8bb00949f13b4114474a2b4f488677c0 Mon Sep 17 00:00:00 2001 From: scott snyder <sss@karma> Date: Tue, 30 Jun 2020 16:35:51 +0200 Subject: [PATCH] StoreGate: Fix clang10 warning. SGImplSvc has a final dtor, so the class itself should be declared final. --- Control/StoreGate/StoreGate/tools/SGImplSvc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Control/StoreGate/StoreGate/tools/SGImplSvc.h b/Control/StoreGate/StoreGate/tools/SGImplSvc.h index 61ed99f9a37..1e144ed229b 100644 --- a/Control/StoreGate/StoreGate/tools/SGImplSvc.h +++ b/Control/StoreGate/StoreGate/tools/SGImplSvc.h @@ -109,7 +109,7 @@ namespace PerfMon { class StorePayloadMon; } * @author ATLAS Collaboration * $Id: SGImplSvc.h 797595 2017-02-16 18:36:10Z ssnyder $ **/ -class SGImplSvc : +class SGImplSvc final : public Service, public IProxyDict, public IHiveStoreMgr, -- GitLab