Merge remote-tracking branch 'origin/master' into develop

This commit is contained in:
Andrew Heather
2018-09-21 16:01:16 +01:00
30 changed files with 72 additions and 71 deletions

View File

@ -86,6 +86,12 @@ public:
//- Copy constructor
explicit Table(const Table<Type>& tbl);
//- Construct and return a clone
virtual tmp<Function1<Type>> clone() const
{
return tmp<Function1<Type>>(new Table<Type>(*this));
}
//- Destructor
virtual ~Table();