Merge remote-tracking branch 'origin/develop' into develop-pre-release

This commit is contained in:
mattijs
2018-05-31 17:34:16 +01:00
1098 changed files with 4845 additions and 3834 deletions

View File

@ -178,11 +178,11 @@ private:
// Private Member Functions
//- Disallow default bitwise copy construct
AMIInterpolation(const AMIInterpolation&);
//- No copy construct
AMIInterpolation(const AMIInterpolation&) = delete;
//- Disallow default bitwise assignment
void operator=(const AMIInterpolation&);
//- No copy assignment
void operator=(const AMIInterpolation&) = delete;
// Parallel functionality

View File

@ -62,11 +62,11 @@ private:
// Private Member Functions
//- Disallow default bitwise copy construct
AMIMethod(const AMIMethod&);
//- No copy construct
AMIMethod(const AMIMethod&) = delete;
//- Disallow default bitwise assignment
void operator=(const AMIMethod&);
//- No copy assignment
void operator=(const AMIMethod&) = delete;
protected:

View File

@ -56,11 +56,11 @@ private:
// Private Member Functions
//- Disallow default bitwise copy construct
directAMI(const directAMI&);
//- No copy construct
directAMI(const directAMI&) = delete;
//- Disallow default bitwise assignment
void operator=(const directAMI&);
//- No copy assignment
void operator=(const directAMI&) = delete;
// Marching front

View File

@ -63,11 +63,11 @@ protected:
// Protected Member Functions
//- Disallow default bitwise copy construct
faceAreaWeightAMI(const faceAreaWeightAMI&);
//- No copy construct
faceAreaWeightAMI(const faceAreaWeightAMI&) = delete;
//- Disallow default bitwise assignment
void operator=(const faceAreaWeightAMI&);
//- No copy assignment
void operator=(const faceAreaWeightAMI&) = delete;
// Marching front

View File

@ -56,11 +56,11 @@ private:
// Private Member Functions
//- Disallow default bitwise copy construct
mapNearestAMI(const mapNearestAMI&);
//- No copy construct
mapNearestAMI(const mapNearestAMI&) = delete;
//- Disallow default bitwise assignment
void operator=(const mapNearestAMI&);
//- No copy assignment
void operator=(const mapNearestAMI&) = delete;
// Marching front

View File

@ -56,11 +56,11 @@ private:
// Private Member Functions
//- Disallow default bitwise copy construct
partialFaceAreaWeightAMI(const partialFaceAreaWeightAMI&);
//- No copy construct
partialFaceAreaWeightAMI(const partialFaceAreaWeightAMI&) = delete;
//- Disallow default bitwise assignment
void operator=(const partialFaceAreaWeightAMI&);
//- No copy assignment
void operator=(const partialFaceAreaWeightAMI&) = delete;
// Marching front

View File

@ -68,11 +68,14 @@ class cyclicACMIGAMGInterfaceField
// Private Member Functions
//- Disallow default bitwise copy construct
cyclicACMIGAMGInterfaceField(const cyclicACMIGAMGInterfaceField&);
//- No copy construct
cyclicACMIGAMGInterfaceField
(
const cyclicACMIGAMGInterfaceField&
) = delete;
//- Disallow default bitwise assignment
void operator=(const cyclicACMIGAMGInterfaceField&);
//- No copy assignment
void operator=(const cyclicACMIGAMGInterfaceField&) = delete;
public:

View File

@ -67,11 +67,14 @@ class cyclicAMIGAMGInterfaceField
// Private Member Functions
//- Disallow default bitwise copy construct
cyclicAMIGAMGInterfaceField(const cyclicAMIGAMGInterfaceField&);
//- No copy construct
cyclicAMIGAMGInterfaceField
(
const cyclicAMIGAMGInterfaceField&
) = delete;
//- Disallow default bitwise assignment
void operator=(const cyclicAMIGAMGInterfaceField&);
//- No copy assignment
void operator=(const cyclicAMIGAMGInterfaceField&) = delete;
public:

View File

@ -64,11 +64,11 @@ class cyclicACMIGAMGInterface
// Private Member Functions
//- Disallow default bitwise copy construct
cyclicACMIGAMGInterface(const cyclicACMIGAMGInterface&);
//- No copy construct
cyclicACMIGAMGInterface(const cyclicACMIGAMGInterface&) = delete;
//- Disallow default bitwise assignment
void operator=(const cyclicACMIGAMGInterface&);
//- No copy assignment
void operator=(const cyclicACMIGAMGInterface&) = delete;
public:

View File

@ -64,11 +64,11 @@ class cyclicAMIGAMGInterface
// Private Member Functions
//- Disallow default bitwise copy construct
cyclicAMIGAMGInterface(const cyclicAMIGAMGInterface&);
//- No copy construct
cyclicAMIGAMGInterface(const cyclicAMIGAMGInterface&) = delete;
//- Disallow default bitwise assignment
void operator=(const cyclicAMIGAMGInterface&);
//- No copy assignment
void operator=(const cyclicAMIGAMGInterface&) = delete;
public:

View File

@ -60,11 +60,11 @@ class cyclicACMIPointPatch
// Private Member Functions
//- Disallow default construct as copy
cyclicACMIPointPatch(const cyclicACMIPointPatch&);
//- No copy construct
cyclicACMIPointPatch(const cyclicACMIPointPatch&) = delete;
//- Disallow default assignment
void operator=(const cyclicACMIPointPatch&);
//- No copy assignment
void operator=(const cyclicACMIPointPatch&) = delete;
protected:

View File

@ -60,11 +60,11 @@ class cyclicAMIPointPatch
// Private Member Functions
//- Disallow default construct as copy
cyclicAMIPointPatch(const cyclicAMIPointPatch&);
//- No copy construct
cyclicAMIPointPatch(const cyclicAMIPointPatch&) = delete;
//- Disallow default assignment
void operator=(const cyclicAMIPointPatch&);
//- No copy assignment
void operator=(const cyclicAMIPointPatch&) = delete;
protected:

View File

@ -71,11 +71,11 @@ class MeshWave
// Private Member Functions
//- Disallow default bitwise copy construct
MeshWave(const MeshWave&);
//- No copy construct
MeshWave(const MeshWave&) = delete;
//- Disallow default bitwise assignment
void operator=(const MeshWave&);
//- No copy assignment
void operator=(const MeshWave&) = delete;
// Private static data

View File

@ -151,11 +151,11 @@ class PatchEdgeFaceWave
//- Update coupled edges
void syncEdges();
//- Disallow default bitwise copy construct
PatchEdgeFaceWave(const PatchEdgeFaceWave&);
//- No copy construct
PatchEdgeFaceWave(const PatchEdgeFaceWave&) = delete;
//- Disallow default bitwise assignment
void operator=(const PatchEdgeFaceWave&);
//- No copy assignment
void operator=(const PatchEdgeFaceWave&) = delete;
public:

View File

@ -210,11 +210,11 @@ class PointEdgeWave
label handleCollocatedPoints();
//- Disallow default bitwise copy construct
PointEdgeWave(const PointEdgeWave&);
//- No copy construct
PointEdgeWave(const PointEdgeWave&) = delete;
//- Disallow default bitwise assignment
void operator=(const PointEdgeWave&);
//- No copy assignment
void operator=(const PointEdgeWave&) = delete;
public:

View File

@ -300,7 +300,7 @@ void Foam::cellClassification::markCells
// Mark faces of celli
const labelList& myFaces = mesh_.cells()[celli];
outsideFacesMap.insertMany(myFaces);
outsideFacesMap.insert(myFaces);
}
}

View File

@ -172,7 +172,7 @@ Foam::label Foam::cellDistFuncs::getPointNeighbours
forAll(f, fp)
{
const labelList& pointNbs = patch.pointFaces()[f[fp]];
nbs.insertMany(pointNbs);
nbs.insert(pointNbs);
}
// Subtract ours.

View File

@ -73,11 +73,11 @@ class cellDistFuncs
static label findIndex(const label n, const labelList&, const label);
//- Disallow default bitwise copy construct
cellDistFuncs(const cellDistFuncs&);
//- No copy construct
cellDistFuncs(const cellDistFuncs&) = delete;
//- Disallow default bitwise assignment
void operator=(const cellDistFuncs&);
//- No copy assignment
void operator=(const cellDistFuncs&) = delete;
public:

View File

@ -105,11 +105,11 @@ class cellFeatures
void calcSuperFaces() const;
//- Disallow default bitwise copy construct
cellFeatures(const cellFeatures&);
//- No copy construct
cellFeatures(const cellFeatures&) = delete;
//- Disallow default bitwise assignment
void operator=(const cellFeatures&);
//- No copy assignment
void operator=(const cellFeatures&) = delete;
public:

View File

@ -57,11 +57,11 @@ class cellQuality
// Private Member Functions
//- Disallow default bitwise copy construct
cellQuality(const cellQuality&);
//- No copy construct
cellQuality(const cellQuality&) = delete;
//- Disallow default bitwise assignment
void operator=(const cellQuality&);
//- No copy assignment
void operator=(const cellQuality&) = delete;
public:

View File

@ -76,10 +76,10 @@ class coordinateSystems
{
// Private Member Functions
//- Disallow default bitwise copy construct
//- No copy construct
coordinateSystems(const coordinateSystems&) = delete;
//- Disallow default bitwise assignment
//- No copy assignment
void operator=(const coordinateSystems&) = delete;

View File

@ -59,11 +59,11 @@ class edgeMeshFormat
{
// Private Member Functions
//- Disallow default bitwise copy construct
edgeMeshFormat(const edgeMeshFormat&);
//- No copy construct
edgeMeshFormat(const edgeMeshFormat&) = delete;
//- Disallow default bitwise assignment
void operator=(const edgeMeshFormat&);
//- No copy assignment
void operator=(const edgeMeshFormat&) = delete;
protected:

View File

@ -54,11 +54,14 @@ class extendedFeatureEdgeMeshFormat
{
// Private Member Functions
//- Disallow default bitwise copy construct
extendedFeatureEdgeMeshFormat(const extendedFeatureEdgeMeshFormat&);
//- No copy construct
extendedFeatureEdgeMeshFormat
(
const extendedFeatureEdgeMeshFormat&
) = delete;
//- Disallow default bitwise assignment
void operator=(const extendedFeatureEdgeMeshFormat&);
//- No copy assignment
void operator=(const extendedFeatureEdgeMeshFormat&) = delete;
public:

View File

@ -63,10 +63,10 @@ class NASedgeFormat
{
// Private Member Functions
//- Disallow default bitwise copy construct
//- No copy construct
NASedgeFormat(const NASedgeFormat&) = delete;
//- Disallow default bitwise assignment
//- No copy assignment
void operator=(const NASedgeFormat&) = delete;
public:

View File

@ -58,10 +58,10 @@ class OBJedgeFormat
{
// Private Member Functions
//- Disallow default bitwise copy construct
//- No copy construct
OBJedgeFormat(const OBJedgeFormat&) = delete;
//- Disallow default bitwise assignment
//- No copy assignment
void operator=(const OBJedgeFormat&) = delete;

View File

@ -68,10 +68,10 @@ class STARCDedgeFormat
static inline void writeLines(Ostream&, const edgeList&);
//- Disallow default bitwise copy construct
//- No copy construct
STARCDedgeFormat(const STARCDedgeFormat&) = delete;
//- Disallow default bitwise assignment
//- No copy assignment
void operator=(const STARCDedgeFormat&) = delete;

View File

@ -54,11 +54,11 @@ class VTKedgeFormat
{
// Private Member Functions
//- Disallow default bitwise copy construct
VTKedgeFormat(const VTKedgeFormat&);
//- No copy construct
VTKedgeFormat(const VTKedgeFormat&) = delete;
//- Disallow default bitwise assignment
void operator=(const VTKedgeFormat&);
//- No copy assignment
void operator=(const VTKedgeFormat&) = delete;
protected:

View File

@ -1531,14 +1531,14 @@ void Foam::extendedEdgeMesh::autoMap
label pointI = pointMap[subPointI];
const labelList& pNormals = featurePointNormals()[pointI];
isSubNormal.setMany(pNormals);
isSubNormal.set(pNormals);
}
forAll(edgeMap, subEdgeI)
{
label edgeI = edgeMap[subEdgeI];
const labelList& eNormals = edgeNormals()[edgeI];
isSubNormal.setMany(eNormals);
isSubNormal.set(eNormals);
}
forAll(isSubNormal, normalI)

View File

@ -55,11 +55,11 @@ class extendedEdgeMeshFormat
{
// Private Member Functions
//- Disallow default bitwise copy construct
extendedEdgeMeshFormat(const extendedEdgeMeshFormat&);
//- No copy construct
extendedEdgeMeshFormat(const extendedEdgeMeshFormat&) = delete;
//- Disallow default bitwise assignment
void operator=(const extendedEdgeMeshFormat&);
//- No copy assignment
void operator=(const extendedEdgeMeshFormat&) = delete;
public:

View File

@ -47,7 +47,7 @@ Foam::treeBoundBox Foam::treeDataFace::calcBb(const label facei) const
void Foam::treeDataFace::update()
{
isTreeFace_.setMany(faceLabels_);
isTreeFace_.set(faceLabels_);
if (cacheBb_)
{

View File

@ -145,11 +145,11 @@ class meshSearch
) const;
//- Disallow default bitwise copy construct
meshSearch(const meshSearch&);
//- No copy construct
meshSearch(const meshSearch&) = delete;
//- Disallow default bitwise assignment
void operator=(const meshSearch&);
//- No copy assignment
void operator=(const meshSearch&) = delete;
public:

View File

@ -301,7 +301,7 @@ void Foam::meshTools::writeOBJ
forAll(cellLabels, i)
{
const cell& cFaces = cells[cellLabels[i]];
usedFaces.insertMany(cFaces);
usedFaces.insert(cFaces);
}
writeOBJ(os, faces, points, usedFaces.toc());

View File

@ -60,14 +60,14 @@ class regionCoupledGAMGInterfaceField
// Private Member Functions
//- Disallow default bitwise copy construct
//- No copy construct
regionCoupledGAMGInterfaceField
(
const regionCoupledGAMGInterfaceField&
);
) = delete;
//- Disallow default bitwise assignment
void operator=(const regionCoupledGAMGInterfaceField&);
//- No copy assignment
void operator=(const regionCoupledGAMGInterfaceField&) = delete;
public:

View File

@ -60,14 +60,14 @@ class regionCoupledWallGAMGInterfaceField
// Private Member Functions
//- Disallow default bitwise copy construct
//- No copy construct
regionCoupledWallGAMGInterfaceField
(
const regionCoupledWallGAMGInterfaceField&
);
) = delete;
//- Disallow default bitwise assignment
void operator=(const regionCoupledWallGAMGInterfaceField&);
//- No copy assignment
void operator=(const regionCoupledWallGAMGInterfaceField&) = delete;
public:

View File

@ -65,11 +65,14 @@ class regionCoupledBaseGAMGInterface
// Private Member Functions
//- Disallow default bitwise copy construct
regionCoupledBaseGAMGInterface(const regionCoupledBaseGAMGInterface&);
//- No copy construct
regionCoupledBaseGAMGInterface
(
const regionCoupledBaseGAMGInterface&
) = delete;
//- Disallow default bitwise assignment
void operator=(const regionCoupledBaseGAMGInterface&);
//- No copy assignment
void operator=(const regionCoupledBaseGAMGInterface&) = delete;
public:

View File

@ -53,11 +53,11 @@ class regionCoupledGAMGInterface
// Private Member Functions
//- Disallow default bitwise copy construct
regionCoupledGAMGInterface(const regionCoupledGAMGInterface&);
//- No copy construct
regionCoupledGAMGInterface(const regionCoupledGAMGInterface&) = delete;
//- Disallow default bitwise assignment
void operator=(const regionCoupledGAMGInterface&);
//- No copy assignment
void operator=(const regionCoupledGAMGInterface&) = delete;
public:

View File

@ -54,11 +54,14 @@ class regionCoupledWallGAMGInterface
// Private Member Functions
//- Disallow default bitwise copy construct
regionCoupledWallGAMGInterface(const regionCoupledWallGAMGInterface&);
//- No copy construct
regionCoupledWallGAMGInterface
(
const regionCoupledWallGAMGInterface&
) = delete;
//- Disallow default bitwise assignment
void operator=(const regionCoupledWallGAMGInterface&);
//- No copy assignment
void operator=(const regionCoupledWallGAMGInterface&) = delete;
public:

View File

@ -67,11 +67,11 @@ class regionSplit2D
// Private Member Functions
//- Disallow default bitwise copy construct
regionSplit2D(const regionSplit2D&);
//- No copy construct
regionSplit2D(const regionSplit2D&) = delete;
//- Disallow default bitwise assignment
void operator=(const regionSplit2D&);
//- No copy assignment
void operator=(const regionSplit2D&) = delete;
public:

View File

@ -54,11 +54,11 @@ class closedTriSurfaceMesh
{
private:
//- Disallow default bitwise copy construct
closedTriSurfaceMesh(const closedTriSurfaceMesh&);
//- No copy construct
closedTriSurfaceMesh(const closedTriSurfaceMesh&) = delete;
//- Disallow default bitwise assignment
void operator=(const closedTriSurfaceMesh&);
//- No copy assignment
void operator=(const closedTriSurfaceMesh&) = delete;
public:

View File

@ -83,11 +83,11 @@ private:
) const;
//- Disallow default bitwise copy construct
searchableBox(const searchableBox&);
//- No copy construct
searchableBox(const searchableBox&) = delete;
//- Disallow default bitwise assignment
void operator=(const searchableBox&);
//- No copy assignment
void operator=(const searchableBox&) = delete;
public:

View File

@ -135,11 +135,11 @@ class searchableCone
//- Return the boundBox of the cylinder
boundBox calcBounds() const;
//- Disallow default bitwise copy construct
searchableCone(const searchableCone&);
//- No copy construct
searchableCone(const searchableCone&) = delete;
//- Disallow default bitwise assignment
void operator=(const searchableCone&);
//- No copy assignment
void operator=(const searchableCone&) = delete;
public:

View File

@ -100,11 +100,11 @@ private:
//- Return the boundBox of the cylinder
boundBox calcBounds() const;
//- Disallow default bitwise copy construct
searchableCylinder(const searchableCylinder&);
//- No copy construct
searchableCylinder(const searchableCylinder&) = delete;
//- Disallow default bitwise assignment
void operator=(const searchableCylinder&);
//- No copy assignment
void operator=(const searchableCylinder&) = delete;
public:

View File

@ -89,11 +89,11 @@ private:
pointIndexHit&
) const;
//- Disallow default bitwise copy construct
searchableDisk(const searchableDisk&);
//- No copy construct
searchableDisk(const searchableDisk&) = delete;
//- Disallow default bitwise assignment
void operator=(const searchableDisk&);
//- No copy assignment
void operator=(const searchableDisk&) = delete;
public:

View File

@ -73,11 +73,11 @@ class searchableExtrudedCircle
// Private Member Functions
//- Disallow default bitwise copy construct
searchableExtrudedCircle(const searchableExtrudedCircle&);
//- No copy construct
searchableExtrudedCircle(const searchableExtrudedCircle&) = delete;
//- Disallow default bitwise assignment
void operator=(const searchableExtrudedCircle&);
//- No copy assignment
void operator=(const searchableExtrudedCircle&) = delete;
public:

View File

@ -72,11 +72,11 @@ private:
//- Return the boundBox of the plane
boundBox calcBounds() const;
//- Disallow default bitwise copy construct
searchablePlane(const searchablePlane&);
//- No copy construct
searchablePlane(const searchablePlane&) = delete;
//- Disallow default bitwise assignment
void operator=(const searchablePlane&);
//- No copy assignment
void operator=(const searchablePlane&) = delete;
public:

View File

@ -95,11 +95,11 @@ private:
const point& end
) const;
//- Disallow default bitwise copy construct
searchablePlate(const searchablePlate&);
//- No copy construct
searchablePlate(const searchablePlate&) = delete;
//- Disallow default bitwise assignment
void operator=(const searchablePlate&);
//- No copy assignment
void operator=(const searchablePlate&) = delete;
public:

View File

@ -80,11 +80,11 @@ private:
// Private Member Functions
//- Disallow default bitwise copy construct
searchableRotatedBox(const searchableRotatedBox&);
//- No copy construct
searchableRotatedBox(const searchableRotatedBox&) = delete;
//- Disallow default bitwise assignment
void operator=(const searchableRotatedBox&);
//- No copy assignment
void operator=(const searchableRotatedBox&) = delete;
public:

View File

@ -89,11 +89,11 @@ private:
) const;
//- Disallow default bitwise copy construct
searchableSphere(const searchableSphere&);
//- No copy construct
searchableSphere(const searchableSphere&) = delete;
//- Disallow default bitwise assignment
void operator=(const searchableSphere&);
//- No copy assignment
void operator=(const searchableSphere&) = delete;
public:

View File

@ -77,11 +77,11 @@ class searchableSurface
// Private Member Functions
//- Disallow default bitwise copy construct
searchableSurface(const searchableSurface&);
//- No copy construct
searchableSurface(const searchableSurface&) = delete;
//- Disallow default bitwise assignment
void operator=(const searchableSurface&);
//- No copy assignment
void operator=(const searchableSurface&) = delete;
public:

View File

@ -108,11 +108,14 @@ class searchableSurfaceCollection
) const;
//- Disallow default bitwise copy construct
searchableSurfaceCollection(const searchableSurfaceCollection&);
//- No copy construct
searchableSurfaceCollection
(
const searchableSurfaceCollection&
) = delete;
//- Disallow default bitwise assignment
void operator=(const searchableSurfaceCollection&);
//- No copy assignment
void operator=(const searchableSurfaceCollection&) = delete;
public:

View File

@ -114,11 +114,11 @@ private:
);
//- Disallow default bitwise copy construct
searchableSurfaceWithGaps(const searchableSurfaceWithGaps&);
//- No copy construct
searchableSurfaceWithGaps(const searchableSurfaceWithGaps&) = delete;
//- Disallow default bitwise assignment
void operator=(const searchableSurfaceWithGaps&);
//- No copy assignment
void operator=(const searchableSurfaceWithGaps&) = delete;
public:

View File

@ -78,11 +78,11 @@ class searchableSurfaces
);
//- Disallow default bitwise copy construct
searchableSurfaces(const searchableSurfaces&);
//- No copy construct
searchableSurfaces(const searchableSurfaces&) = delete;
//- Disallow default bitwise assignment
void operator=(const searchableSurfaces&);
//- No copy assignment
void operator=(const searchableSurfaces&) = delete;
public:

View File

@ -134,11 +134,11 @@ class triSurfaceMesh
DynamicList<pointIndexHit>& hits
);
//- Disallow default bitwise copy construct
triSurfaceMesh(const triSurfaceMesh&);
//- No copy construct
triSurfaceMesh(const triSurfaceMesh&) = delete;
//- Disallow default bitwise assignment
void operator=(const triSurfaceMesh&);
//- No copy assignment
void operator=(const triSurfaceMesh&) = delete;
public:

View File

@ -152,7 +152,7 @@ void Foam::normalToFace::applyToSet
}
}
set.eraseMany(toBeRemoved);
set.erase(toBeRemoved);
}
}

View File

@ -139,10 +139,10 @@ private:
// Private Member Functions
//- Disallow default bitwise copy construct
//- No copy construct
topoSetSource(const topoSetSource&) = delete;
//- Disallow default bitwise assignment
//- No copy assignment
void operator=(const topoSetSource&) = delete;

View File

@ -52,7 +52,7 @@ class cellSet
{
// Private Member Functions
//- Disallow default bitwise copy construct
//- No copy construct
cellSet(const cellSet&) = delete;

View File

@ -106,7 +106,7 @@ protected:
) const;
//- Disallow default bitwise copy construct
//- No copy construct
topoSet(const topoSet&) = delete;

View File

@ -91,10 +91,10 @@ private:
// Private Member Functions
//- Disallow default bitwise copy construct
//- No copy construct
triSurfaceLoader(const triSurfaceLoader&) = delete;
//- Disallow default bitwise assignment
//- No copy assignment
void operator=(const triSurfaceLoader&) = delete;
public:

View File

@ -83,11 +83,11 @@ class triSurfaceRegionSearch
// Private Member Functions
//- Disallow default bitwise copy construct
triSurfaceRegionSearch(const triSurfaceRegionSearch&);
//- No copy construct
triSurfaceRegionSearch(const triSurfaceRegionSearch&) = delete;
//- Disallow default bitwise assignment
void operator=(const triSurfaceRegionSearch&);
//- No copy assignment
void operator=(const triSurfaceRegionSearch&) = delete;
public:

View File

@ -84,10 +84,10 @@ class triSurfaceSearch
const vector& lineVec
) const;
//- Disallow default bitwise copy construct
//- No copy construct
triSurfaceSearch(const triSurfaceSearch&) = delete;
//- Disallow default bitwise assignment
//- No copy assignment
void operator=(const triSurfaceSearch&) = delete;

View File

@ -384,7 +384,7 @@ Foam::labelHashSet Foam::triSurfaceTools::getCollapsedFaces
const labelList& myFaces = surf.edgeFaces()[edgeI];
labelHashSet facesToBeCollapsed(2*myFaces.size());
facesToBeCollapsed.insertMany(myFaces);
facesToBeCollapsed.insert(myFaces);
// From faces using v1 check if they share an edge with faces
// using v2.

View File

@ -86,11 +86,11 @@ class twoDPointCorrector
// Private Member Functions
//- Disallow default bitwise copy construct
twoDPointCorrector(const twoDPointCorrector&);
//- No copy construct
twoDPointCorrector(const twoDPointCorrector&) = delete;
//- Disallow default bitwise assignment
void operator=(const twoDPointCorrector&);
//- No copy assignment
void operator=(const twoDPointCorrector&) = delete;
//- Calculate addressing