src/OpenFOAM: Moved the deleted bitwise copy and assignment declarations into public section of the class

This commit is contained in:
Henry Weller
2019-05-29 15:48:49 +01:00
parent a7f4147887
commit f7ea836c65
132 changed files with 1155 additions and 1022 deletions

View File

@ -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;
};