mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: prefer std::unique_ptr instead of (aliased) Foam::unique_ptr
This commit is contained in:
@ -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_;
|
||||
|
||||
Reference in New Issue
Block a user