Skip to content

Commit

Permalink
Merge pull request #24713 from gartung/GeneratorInterface-GenFilters-…
Browse files Browse the repository at this point in the history
…strictcxx17

GeneratorInterface/GenFilters: replace auto_ptr removed in strict std=c++17
  • Loading branch information
cmsbuild committed Oct 3, 2018
2 parents b4d52b3 + decd917 commit 2269e44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class PythiaFilterGammaGamma : public edm::global::EDFilter<> {
We make this a pointer because EDFilter::filter() is const
while BaseHepMCFilter::filter() is not.
*/
std::auto_ptr<PythiaHepMCFilterGammaGamma> hepMCFilter_;
std::unique_ptr<PythiaHepMCFilterGammaGamma> hepMCFilter_;

};
#endif

0 comments on commit 2269e44

Please sign in to comment.