STYLE: adjust codeTemplates to use '= delete'

This commit is contained in:
Mark Olesen
2018-04-19 07:38:31 +02:00
parent 367ddb8f05
commit ef922b6917
4 changed files with 21 additions and 25 deletions

View File

@ -91,10 +91,10 @@ class FUNCTIONOBJECT
// Private Member Functions
//- Disallow default bitwise copy construct
//- No copy construct
FUNCTIONOBJECT(const FUNCTIONOBJECT&);
//- Disallow default bitwise assignment
//- No copy assignment
void operator=(const FUNCTIONOBJECT&);
@ -122,7 +122,7 @@ public:
// Member Functions
//- Read the FUNCTIONOBJECT data
virtual bool read(const dictionary&);
virtual bool read(const dictionary& dict);
//- Execute, currently does nothing
virtual bool execute();