STYLE: prefer std::unique_ptr instead of (aliased) Foam::unique_ptr

This commit is contained in:
Mark Olesen
2022-12-01 16:06:34 +00:00
parent 3151dacccc
commit 3ab182b1ae
17 changed files with 53 additions and 50 deletions

View File

@ -91,13 +91,13 @@ class meshToMesh0
labelListList boundaryAddressing_;
//- Inverse-distance interpolation weights
mutable unique_ptr<scalarListList> inverseDistanceWeightsPtr_;
mutable std::unique_ptr<scalarListList> inverseDistanceWeightsPtr_;
//- Inverse-volume interpolation weights
mutable unique_ptr<scalarListList> inverseVolumeWeightsPtr_;
mutable std::unique_ptr<scalarListList> inverseVolumeWeightsPtr_;
//- Cell to cell overlap addressing
mutable unique_ptr<labelListList> cellToCellAddressingPtr_;
mutable std::unique_ptr<labelListList> cellToCellAddressingPtr_;
//- Overlap volume
mutable scalar V_;