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

@ -92,14 +92,14 @@ class compressibleInterPhaseTransportModel
// Private Member Functions
//- Disallow default bitwise copy construct
//- No copy construct
compressibleInterPhaseTransportModel
(
const compressibleInterPhaseTransportModel&
);
) = delete;
//- Disallow default bitwise assignment
void operator=(const compressibleInterPhaseTransportModel&);
//- No copy assignment
void operator=(const compressibleInterPhaseTransportModel&) = delete;
public: