diff --git a/src/finiteVolume/interpolation/interpolation/interpolationCell/interpolationCell.H b/src/finiteVolume/interpolation/interpolation/interpolationCell/interpolationCell.H index 3c751721d9..122cdfcc06 100644 --- a/src/finiteVolume/interpolation/interpolation/interpolationCell/interpolationCell.H +++ b/src/finiteVolume/interpolation/interpolation/interpolationCell/interpolationCell.H @@ -68,6 +68,9 @@ public: // Member Functions + //- Inherit interpolate from interpolation + using interpolation::interpolate; + //- Interpolate field to the given point in the given cell Type interpolate ( diff --git a/src/finiteVolume/interpolation/interpolation/interpolationCellPatchConstrained/interpolationCellPatchConstrained.H b/src/finiteVolume/interpolation/interpolation/interpolationCellPatchConstrained/interpolationCellPatchConstrained.H index 301e94d160..78745b0f74 100644 --- a/src/finiteVolume/interpolation/interpolation/interpolationCellPatchConstrained/interpolationCellPatchConstrained.H +++ b/src/finiteVolume/interpolation/interpolation/interpolationCellPatchConstrained/interpolationCellPatchConstrained.H @@ -70,6 +70,9 @@ public: // Member Functions + //- Inherit interpolate from interpolation + using interpolation::interpolate; + //- Interpolate field to the given point in the given cell Type interpolate ( diff --git a/src/finiteVolume/interpolation/interpolation/interpolationCellPoint/interpolationCellPoint.H b/src/finiteVolume/interpolation/interpolation/interpolationCellPoint/interpolationCellPoint.H index dad6e858b1..fd2ac4d755 100644 --- a/src/finiteVolume/interpolation/interpolation/interpolationCellPoint/interpolationCellPoint.H +++ b/src/finiteVolume/interpolation/interpolation/interpolationCellPoint/interpolationCellPoint.H @@ -82,6 +82,9 @@ public: // Member Functions + //- Inherit interpolate from interpolation + using interpolation::interpolate; + //- Interpolate field for the given cellPointWeight inline Type interpolate(const cellPointWeight& cpw) const;