Skip to content

Commit

Permalink
Fix clang warnings by adding final
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Sep 1, 2023
1 parent c7f4d40 commit d0f19ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions k4MarlinWrapper/k4MarlinWrapper/converters/Lcio2EDM4hep.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ class Lcio2EDM4hepTool : public GaudiTool, virtual public IEDMConverter {
public:
Lcio2EDM4hepTool(const std::string& type, const std::string& name, const IInterface* parent);
virtual ~Lcio2EDM4hepTool();
virtual StatusCode initialize();
virtual StatusCode finalize();
StatusCode initialize() final;
StatusCode finalize() final;

// **********************************
// - Convert all collections indicated in Tool parameters
Expand Down

0 comments on commit d0f19ee

Please sign in to comment.