Disabled default copy construct and op=
This commit is contained in:
parent
0e884662cf
commit
6f147cf003
2 changed files with 24 additions and 0 deletions
|
@ -53,6 +53,18 @@ class centredCFCCellToFaceStencilObject
|
|||
public extendedCentredCellToFaceStencil
|
||||
{
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
centredCFCCellToFaceStencilObject
|
||||
(
|
||||
const centredCFCCellToFaceStencilObject&
|
||||
);
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const centredCFCCellToFaceStencilObject&);
|
||||
|
||||
|
||||
public:
|
||||
|
||||
TypeName("centredCFCCellToFaceStencil");
|
||||
|
|
|
@ -53,6 +53,18 @@ class upwindCFCCellToFaceStencilObject
|
|||
public extendedUpwindCellToFaceStencil
|
||||
{
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
upwindCFCCellToFaceStencilObject
|
||||
(
|
||||
const upwindCFCCellToFaceStencilObject&
|
||||
);
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const upwindCFCCellToFaceStencilObject&);
|
||||
|
||||
|
||||
public:
|
||||
|
||||
TypeName("upwindCFCCellToFaceStencil");
|
||||
|
|
Reference in a new issue