std::make_unique -> make_unique

This commit is contained in:
Gavin Ridley 2021-05-04 15:55:08 -04:00
parent 898165b720
commit 50d0430496
20 changed files with 87 additions and 99 deletions

View file

@ -157,7 +157,7 @@ partition_universes()
if (dynamic_cast<const SurfaceZPlane*>(model::surfaces[i_surf].get())) {
++n_zplanes;
if (n_zplanes > 5) {
univ->partitioner_ = std::make_unique<UniversePartitioner>(*univ);
univ->partitioner_ = make_unique<UniversePartitioner>(*univ);
break;
}
}