Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

override keywords added by the clang extras utility cpp11-migrate --add-override #339

Merged
merged 1 commit into from Aug 15, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -36,7 +36,7 @@ namespace cond {
public:
AlignSplitIOV();
~AlignSplitIOV();
int execute();
int execute() override;

template<class T>
std::string processPayloadContainer(cond::DbSession &sourcedb,
Expand Down
Expand Up @@ -58,7 +58,7 @@ class AlignmentMuonHIPTrajectorySelector : public edm::EDProducer {
~AlignmentMuonHIPTrajectorySelector();

private:
virtual void produce(edm::Event&, const edm::EventSetup&);
virtual void produce(edm::Event&, const edm::EventSetup&) override;

// ---------- member data --------------------------------
edm::InputTag m_input;
Expand Down
Expand Up @@ -86,7 +86,7 @@ class FakeAlignmentSource : public edm::ESProducer, public edm::EventSetupRecord
protected:
/// provide (dummy) IOV
virtual void setIntervalFor( const edm::eventsetup::EventSetupRecordKey& /*dummy*/,
const edm::IOVSyncValue& ioSyncVal, edm::ValidityInterval& iov);
const edm::IOVSyncValue& ioSyncVal, edm::ValidityInterval& iov) override;

private:

Expand Down
Expand Up @@ -145,9 +145,9 @@ class GlobalTrackerMuonAlignment : public edm::EDAnalyzer {

private:

virtual void beginJob() ;
virtual void analyze(const edm::Event&, const edm::EventSetup&);
virtual void endJob() ;
virtual void beginJob() override ;
virtual void analyze(const edm::Event&, const edm::EventSetup&) override;
virtual void endJob() override ;

// ----------member data ---------------------------

Expand Down