Skip to content

Commit

Permalink
Merge pull request #24673 from gartung/RecoVertex-AdaptiveVertexFinde…
Browse files Browse the repository at this point in the history
…r-strictcxx17

RecoVertex/AdaptiveVertexFinder: replace template deprecated by std=c++17
  • Loading branch information
cmsbuild committed Sep 27, 2018
2 parents cf1ffb3 + e0bba8c commit 7314f07
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -121,8 +121,8 @@ class TemplatedInclusiveVertexFinder : public edm::stream::EDProducer<> {
double fitterRatio;
bool useVertexFitter;
bool useVertexReco;
std::auto_ptr<VertexReconstructor> vtxReco;
std::auto_ptr<TracksClusteringFromDisplacedSeed> clusterizer;
std::unique_ptr<VertexReconstructor> vtxReco;
std::unique_ptr<TracksClusteringFromDisplacedSeed> clusterizer;

};
template <class InputContainer, class VTX>
Expand Down

0 comments on commit 7314f07

Please sign in to comment.