src/OpenFOAM: Moved the deleted bitwise copy and assignment declarations into public section of the class
This commit is contained in:
@ -95,12 +95,6 @@ class functionObjectList
|
||||
// configuration files, add to the given map and recurse
|
||||
static void listDir(const fileName& dir, HashSet<word>& foMap);
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
functionObjectList(const functionObjectList&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const functionObjectList&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -136,6 +130,9 @@ public:
|
||||
const bool execution=true
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
functionObjectList(const functionObjectList&) = delete;
|
||||
|
||||
//- Construct and return a functionObjectList for an application.
|
||||
// If the "dict" argument is specified the functionObjectList is
|
||||
// constructed from that dictionary which is returned as
|
||||
@ -288,6 +285,12 @@ public:
|
||||
|
||||
//- Update for changes of mesh
|
||||
void movePoints(const polyMesh& mesh);
|
||||
|
||||
|
||||
// Member Operators
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const functionObjectList&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user