Skip to content

Commit

Permalink
RecoVertex/VertexTools: replace template deprecated by std=c++17
Browse files Browse the repository at this point in the history
  • Loading branch information
gartung committed Sep 26, 2018
1 parent 38f1404 commit 1fbabe1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RecoVertex/VertexTools/src/PerigeeRefittedTrackState.cc
Expand Up @@ -39,7 +39,7 @@ TrajectoryStateOnSurface
PerigeeRefittedTrackState::trajectoryStateOnSurface(const Surface & surface,
const Propagator & propagator) const
{
std::auto_ptr<Propagator> thePropagator( propagator.clone());
std::unique_ptr<Propagator> thePropagator( propagator.clone());
thePropagator->setPropagationDirection(anyDirection);

TrajectoryStateOnSurface tsos = thePropagator->propagate(freeTrajectoryState(), surface);
Expand Down

0 comments on commit 1fbabe1

Please sign in to comment.