interpolation: Fixed Clang warnings about hidden virtual methods

This commit is contained in:
Will Bainbridge
2020-09-30 16:20:09 +01:00
parent b7b79a59c2
commit 15b280c11a
3 changed files with 9 additions and 0 deletions

View File

@ -68,6 +68,9 @@ public:
// Member Functions
//- Inherit interpolate from interpolation
using interpolation<Type>::interpolate;
//- Interpolate field to the given point in the given cell
Type interpolate
(

View File

@ -70,6 +70,9 @@ public:
// Member Functions
//- Inherit interpolate from interpolation
using interpolation<Type>::interpolate;
//- Interpolate field to the given point in the given cell
Type interpolate
(

View File

@ -82,6 +82,9 @@ public:
// Member Functions
//- Inherit interpolate from interpolation
using interpolation<Type>::interpolate;
//- Interpolate field for the given cellPointWeight
inline Type interpolate(const cellPointWeight& cpw) const;