diff --git a/src/OpenFOAM/interpolations/primitivePatchInterpolation/PrimitivePatchInterpolation.C b/src/OpenFOAM/interpolations/primitivePatchInterpolation/PrimitivePatchInterpolation.C index 190ddd07d4..6f09c755d0 100644 --- a/src/OpenFOAM/interpolations/primitivePatchInterpolation/PrimitivePatchInterpolation.C +++ b/src/OpenFOAM/interpolations/primitivePatchInterpolation/PrimitivePatchInterpolation.C @@ -60,7 +60,7 @@ void PrimitivePatchInterpolation::makeFaceToPointWeights() const } const pointField& points = patch_.localPoints(); - const faceList& faces = patch_.localFaces(); + const List& faces = patch_.localFaces(); faceToPointWeightsPtr_ = new scalarListList(points.size()); scalarListList& weights = *faceToPointWeightsPtr_; @@ -118,7 +118,7 @@ void PrimitivePatchInterpolation::makeFaceToEdgeWeights() const } const pointField& points = patch_.localPoints(); - const faceList& faces = patch_.localFaces(); + const List& faces = patch_.localFaces(); const edgeList& edges = patch_.edges(); const labelListList& edgeFaces = patch_.edgeFaces(); @@ -261,7 +261,7 @@ tmp > PrimitivePatchInterpolation::pointToFaceInterpolate Field& result = tresult(); - const faceList& localFaces = patch_.localFaces(); + const List& localFaces = patch_.localFaces(); forAll(result, facei) {