Skip to content

Commit

Permalink
Fix linker error by defaulting the destructor
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed May 23, 2024
1 parent 3ec3897 commit 6c7af1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion k4FWCore/include/k4FWCore/k4DataSvc.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class k4DataSvc : public DataSvc {
k4DataSvc(const std::string& name, ISvcLocator* svc);

/// Standard Destructor
virtual ~k4DataSvc();
virtual ~k4DataSvc() = default;

// Use DataSvc functionality except where we override
using DataSvc::registerObject;
Expand Down

0 comments on commit 6c7af1d

Please sign in to comment.