From 6f9e86be3b2f961bd46d126c4d47de7e611cab04 Mon Sep 17 00:00:00 2001 From: Juan Miguel Carceller <22276694+jmcarcell@users.noreply.github.com> Date: Fri, 28 Jul 2023 17:23:01 +0200 Subject: [PATCH] Remove a call of the DataWrapperBase constructor (#128) --- 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 062dbd84..dfd68907 100644 --- a/k4FWCore/include/k4FWCore/DataWrapper.h +++ b/k4FWCore/include/k4FWCore/DataWrapper.h @@ -24,7 +24,7 @@ template class GAUDI_API DataWrapper : public DataWrapperBase { template friend class DataHandle; public: - DataWrapper() : DataWrapperBase(), m_data(nullptr){}; + DataWrapper() : m_data(nullptr){}; virtual ~DataWrapper(); const T* getData() { return m_data; }