Skip to content
Snippets Groups Projects
Commit 7927220a authored by scott snyder's avatar scott snyder Committed by scott snyder
Browse files

AthenaMonitoring: Fix clang warning.

clang warning: missing override keyword.
parent d533d94c
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ class ExampleMonitorAlgorithm : public AthMonitorAlgorithm {
public:
ExampleMonitorAlgorithm( const std::string& name, ISvcLocator* pSvcLocator );
virtual ~ExampleMonitorAlgorithm();
StatusCode initialize();
virtual StatusCode initialize() override;
virtual StatusCode fillHistograms( const EventContext& ctx ) const override;
private:
Gaudi::Property<bool> m_doRandom {this,"RandomHist",false};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment