From e816c1f2249e03d82da9325ca91b6a4031774997 Mon Sep 17 00:00:00 2001 From: ChrisJChang <59903135+ChrisJChang@users.noreply.github.com> Date: Fri, 8 Dec 2023 14:08:30 +0100 Subject: [PATCH] Remove incorrect use of const in Event.h I accidentally introduced this in my recent heputils bug fixes --- contrib/heputils/include/HEPUtils/Event.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/heputils/include/HEPUtils/Event.h b/contrib/heputils/include/HEPUtils/Event.h index acc29dfa23..c0ffb9c83c 100644 --- a/contrib/heputils/include/HEPUtils/Event.h +++ b/contrib/heputils/include/HEPUtils/Event.h @@ -43,7 +43,7 @@ namespace HEPUtils { using CSeqBasePtr = std::shared_ptr; /// Hold the cluster sequences corresponding to jets, to keep them alive - std::map _cseqs; + std::map _cseqs; /// Missing momentum vector P4 _pmiss;