Skip to content

Commit

Permalink
adding missed std:: for unique_ptr
Browse files Browse the repository at this point in the history
  • Loading branch information
albertdow committed May 30, 2017
1 parent a60bc8e commit 8a15e70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RecoTauTag/HLTProducers/src/PFJetsTauOverlapRemoval.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ PFJetsTauOverlapRemoval::~PFJetsTauOverlapRemoval(){ }
void PFJetsTauOverlapRemoval::produce(edm::StreamID iSId, edm::Event& iEvent, const edm::EventSetup& iES) const
{

unique_ptr<reco::PFJetCollection> cleanedPFJets(new reco::PFJetCollection);
std::unique_ptr<reco::PFJetCollection> cleanedPFJets(new reco::PFJetCollection);

double deltaR2 = 1.0;
double matchingR2 = 0.25;
Expand Down

0 comments on commit 8a15e70

Please sign in to comment.