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

use ClassDefOverride instead of ClassDef to avoid inconsistent-missing-override warning #20763

Merged
merged 1 commit into from Oct 8, 2017
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 FWCore/TFWLiteSelector/interface/TFWLiteSelector.h
Expand Up @@ -84,7 +84,7 @@ class TFWLiteSelector : public TFWLiteSelectorBasic

// ---------- member data --------------------------------
edm::propagate_const<std::shared_ptr<TWorker>> worker_;
ClassDef(TFWLiteSelector,2)
ClassDefOverride(TFWLiteSelector,2)
};

#endif
2 changes: 1 addition & 1 deletion FWCore/TFWLiteSelector/interface/TFWLiteSelectorBasic.h
Expand Up @@ -100,7 +100,7 @@ class TFWLiteSelectorBasic : public TSelector
edm::propagate_const<std::shared_ptr<edm::root::TFWLiteSelectorMembers>> m_;
bool everythingOK_;

ClassDef(TFWLiteSelectorBasic,2)
ClassDefOverride(TFWLiteSelectorBasic,2)
};


Expand Down
2 changes: 1 addition & 1 deletion FWCore/TFWLiteSelectorTest/src/ThingsTSelector.h
Expand Up @@ -30,7 +30,7 @@ public :
ThingsTSelector(ThingsTSelector const&);
ThingsTSelector operator=(ThingsTSelector const&);

ClassDef(ThingsTSelector,2)
ClassDefOverride(ThingsTSelector,2)
};
}
#endif
2 changes: 1 addition & 1 deletion FWCore/TFWLiteSelectorTest/src/ThingsTSelector2.h
Expand Up @@ -31,7 +31,7 @@ public :
ThingsTSelector2(ThingsTSelector2 const&);
ThingsTSelector2 operator=(ThingsTSelector2 const&);

ClassDef(ThingsTSelector2,2)
ClassDefOverride(ThingsTSelector2,2)
};
}
#endif