mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: Code clean-up
This commit is contained in:
@ -69,7 +69,7 @@ class Table
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const Table<Type>&);
|
||||
void operator=(const Table<Type>&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
@ -84,7 +84,7 @@ public:
|
||||
Table(const word& entryName, const dictionary& dict);
|
||||
|
||||
//- Copy constructor
|
||||
Table(const Table<Type>& tbl);
|
||||
explicit Table(const Table<Type>& tbl);
|
||||
|
||||
|
||||
//- Destructor
|
||||
|
||||
@ -106,7 +106,7 @@ public:
|
||||
TableBase(const word& name, const dictionary& dict);
|
||||
|
||||
//- Copy constructor. Note: steals interpolator, tableSamples
|
||||
TableBase(const TableBase<Type>& tbl);
|
||||
explicit TableBase(const TableBase<Type>& tbl);
|
||||
|
||||
|
||||
//- Destructor
|
||||
|
||||
Reference in New Issue
Block a user