From 16660a95b03f06685398a06181db4f373f008c1f Mon Sep 17 00:00:00 2001 From: laurence Date: Fri, 9 Mar 2012 16:13:07 +0000 Subject: [PATCH] ENH: PrimitivePatchInterpolation: Change faceList to List --- .../PrimitivePatchInterpolation.C | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) {