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 #340

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
2 changes: 1 addition & 1 deletion Alignment/MuonAlignment/plugins/MuonGeometryDBConverter.cc
Expand Up @@ -47,7 +47,7 @@ class MuonGeometryDBConverter : public edm::EDAnalyzer {


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

bool m_done;
std::string m_input, m_output;
Expand Down
2 changes: 1 addition & 1 deletion Alignment/MuonAlignment/plugins/MuonGeometrySVGTemplate.cc
Expand Up @@ -50,7 +50,7 @@ class MuonGeometrySVGTemplate : public edm::EDAnalyzer {
~MuonGeometrySVGTemplate();

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

std::string m_wheelTemplateName;
// std::string m_disk1TemplateName;
Expand Down
2 changes: 1 addition & 1 deletion Alignment/MuonAlignment/plugins/MuonGeometrySanityCheck.cc
Expand Up @@ -98,7 +98,7 @@ class MuonGeometrySanityCheck : public edm::EDAnalyzer {
~MuonGeometrySanityCheck();

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

std::string printout;
double tolerance;
Expand Down