interpolation: Fixed Clang warnings about hidden virtual methods
This commit is contained in:
@ -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
|
||||
(
|
||||
|
||||
@ -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
|
||||
(
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user