diff --git a/applications/utilities/surface/surfaceClean/collapseEdge.C b/applications/utilities/surface/surfaceClean/collapseEdge.C index b1f4f4ea84..55972da94d 100644 --- a/applications/utilities/surface/surfaceClean/collapseEdge.C +++ b/applications/utilities/surface/surfaceClean/collapseEdge.C @@ -6,6 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation + Copyright (C) 2020 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -35,7 +36,7 @@ static void markPointNbrs boolList& okToCollapse ) { - const triSurface::FaceType& f = surf.localFaces()[facei]; + const triSurface::face_type& f = surf.localFaces()[facei]; forAll(f, fp) { @@ -109,7 +110,7 @@ label collapseEdge(triSurface& surf, const scalar minLen) if (okToCollapse[facei]) { // Check edge lengths. - const triSurface::FaceType& f = localFaces[facei]; + const triSurface::face_type& f = localFaces[facei]; forAll(f, fp) { diff --git a/applications/utilities/surface/surfaceSplitNonManifolds/surfaceSplitNonManifolds.C b/applications/utilities/surface/surfaceSplitNonManifolds/surfaceSplitNonManifolds.C index 8f5e8ea8f9..8c8cd23c8b 100644 --- a/applications/utilities/surface/surfaceSplitNonManifolds/surfaceSplitNonManifolds.C +++ b/applications/utilities/surface/surfaceSplitNonManifolds/surfaceSplitNonManifolds.C @@ -6,7 +6,7 @@ \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation - Copyright (C) 2019 OpenCFD Ltd. + Copyright (C) 2019-2020 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -459,7 +459,7 @@ label sharedFace const edge& e = surf.edges()[sharedEdgeI]; - const triSurface::FaceType& f = surf.localFaces()[firstFacei]; + const triSurface::face_type& f = surf.localFaces()[firstFacei]; label startIndex = f.find(e.start()); @@ -611,13 +611,13 @@ void renumberFaces const triSurface& surf, const labelList& pointMap, const Map