mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: use forAll macro in more places, avoid LF-CR endings
This commit is contained in:
@ -125,7 +125,7 @@ void PrimitivePatchInterpolation<Patch>::makeFaceToEdgeWeights() const
|
||||
faceToEdgeWeightsPtr_ = new scalarList(patch_.nInternalEdges());
|
||||
scalarList& weights = *faceToEdgeWeightsPtr_;
|
||||
|
||||
for (label edgei = 0; edgei < weights.size(); edgei++)
|
||||
forAll(weights, edgei)
|
||||
{
|
||||
vector P = faces[edgeFaces[edgei][0]].centre(points);
|
||||
vector N = faces[edgeFaces[edgei][1]].centre(points);
|
||||
|
||||
Reference in New Issue
Block a user