STYLE: consistent use of '= delete'

This commit is contained in:
Mark Olesen
2018-05-30 12:03:17 +02:00
parent 5aa955c9d2
commit dc521b95df
18 changed files with 63 additions and 63 deletions

View File

@ -54,11 +54,14 @@ class ${typeName}Points0MotionSolver
{
// Private Member Functions
//- Disallow default bitwise copy construct
${typeName}Points0MotionSolver(const ${typeName}Points0MotionSolver&);
//- No copy construct
${typeName}Points0MotionSolver
(
const ${typeName}Points0MotionSolver&
) = delete;
//- Disallow default bitwise assignment
void operator=(const ${typeName}Points0MotionSolver&);
//- No copy assignment
void operator=(const ${typeName}Points0MotionSolver&) = delete;
public:
@ -88,7 +91,7 @@ public:
//- Solve for motion
virtual void solve()
{};
{}
};