Renamed FieldMapper -> fieldMapper: it is an abstract base class for field mapping, not templated

This commit is contained in:
Henry Weller
2019-05-03 08:58:13 +01:00
parent 76a8f398aa
commit 4b57ee554e
11 changed files with 48 additions and 47 deletions

View File

@ -103,9 +103,9 @@ void Foam::mixedFixedValueSlipFvPatchField<Type>::autoMap
const fvPatchFieldMapper& m
)
{
Field<Type>::autoMap(m);
refValue_.autoMap(m);
valueFraction_.autoMap(m);
m(*this, *this);
m(refValue_, refValue_);
m(valueFraction_, valueFraction_);
}