From f0ec764625c655542deeba937e10c76096d6c45b Mon Sep 17 00:00:00 2001 From: Juan Miguel Carceller <22276694+jmcarcell@users.noreply.github.com> Date: Mon, 9 Dec 2024 10:02:43 +0100 Subject: [PATCH] Remove virtual Co-authored-by: Mateusz Jakub Fila <37295697+m-fila@users.noreply.github.com> --- k4FWCore/include/k4FWCore/DataWrapper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k4FWCore/include/k4FWCore/DataWrapper.h b/k4FWCore/include/k4FWCore/DataWrapper.h index 0ecfb248..6042f4d4 100644 --- a/k4FWCore/include/k4FWCore/DataWrapper.h +++ b/k4FWCore/include/k4FWCore/DataWrapper.h @@ -49,7 +49,7 @@ template class GAUDI_API DataWrapper : public DataWrapperBase { uptr.release(); is_owner = false; } - virtual ~DataWrapper() override; + ~DataWrapper() override; const T* getData() const { return m_data; } void setData(const T* data) { m_data = data; }