Skip to content

Commit

Permalink
Remove a call of the DataWrapperBase constructor (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell authored Jul 28, 2023
1 parent b03d604 commit 6f9e86b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion k4FWCore/include/k4FWCore/DataWrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ template <class T> class GAUDI_API DataWrapper : public DataWrapperBase {
template <class T2> friend class DataHandle;

public:
DataWrapper() : DataWrapperBase(), m_data(nullptr){};
DataWrapper() : m_data(nullptr){};
virtual ~DataWrapper();

const T* getData() { return m_data; }
Expand Down

0 comments on commit 6f9e86b

Please sign in to comment.