Skip to content

Commit

Permalink
avoid clang confusion
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlange6 committed Nov 5, 2017
1 parent 627cda9 commit d79bebb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion HeavyFlavorAnalysis/RecoDecay/interface/BPHMultiSelect.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class BPHMultiSelect: public T {
}

/// accept function
bool accept( const reco::Candidate & cand,
bool accept( const reco::Candidate & cand, //NOLINT
const BPHRecoBuilder* build ) const { return false; } //NOLINT
bool accept( const reco::Candidate & cand ) const { return false; } //NOLINT
bool accept( const BPHDecayMomentum& cand ) const { return false; } //NOLINT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class FFTJetCorrectorParametersLoader :
{
typedef DefaultFFTJetRcdMapper<FFTJetCorrectorParameters> Base;
friend class StaticFFTJetRcdMapper<FFTJetCorrectorParametersLoader>;
FFTJetCorrectorParametersLoader();
FFTJetCorrectorParametersLoader(); //NOLINT
};

typedef StaticFFTJetRcdMapper<FFTJetCorrectorParametersLoader>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace npstat {
{
typedef gs::DefaultReader<StorableMultivariateFunctor> Base;
friend class gs::StaticReader<StorableMultivariateFunctorReader>;
StorableMultivariateFunctorReader();
StorableMultivariateFunctorReader(); //NOLINT
};

/** The reader factory for descendants of StorableMultivariateFunctor */
Expand Down

0 comments on commit d79bebb

Please sign in to comment.