diff --git a/src/OpenFOAM/fields/PointPatchFields/basic/value/ValuePointPatchField.C b/src/OpenFOAM/fields/PointPatchFields/basic/value/ValuePointPatchField.C index bbf85a0e8..e88b5a85d 100644 --- a/src/OpenFOAM/fields/PointPatchFields/basic/value/ValuePointPatchField.C +++ b/src/OpenFOAM/fields/PointPatchFields/basic/value/ValuePointPatchField.C @@ -240,7 +240,7 @@ updateCoeffs() // Get internal field to insert values into Field& iF = const_cast&>(this->internalField()); - setInInternalField(iF, values); + this->setInInternalField(iF, values); } PointPatchField:: @@ -263,7 +263,7 @@ ValuePointPatchField::evaluate ) { // Evaluate boundary condition - updateBoundaryField(); + this->updateBoundaryField(); if (this->isPointField()) { @@ -273,7 +273,7 @@ ValuePointPatchField::evaluate // Get internal field to insert values into Field& iF = const_cast&>(this->internalField()); - setInInternalField(iF, values); + this->setInInternalField(iF, values); } PointPatchField::evaluate diff --git a/src/OpenFOAM/fields/PointPatchFields/constraint/processor/ProcessorPointPatchField.C b/src/OpenFOAM/fields/PointPatchFields/constraint/processor/ProcessorPointPatchField.C index b7835747d..0745021f9 100644 --- a/src/OpenFOAM/fields/PointPatchFields/constraint/processor/ProcessorPointPatchField.C +++ b/src/OpenFOAM/fields/PointPatchFields/constraint/processor/ProcessorPointPatchField.C @@ -233,7 +233,7 @@ initAddFieldTempl const Field& pField ) const { - sendField(patchInternalField(pField), commsType); + this->sendField(patchInternalField(pField), commsType); } @@ -258,7 +258,7 @@ addFieldTempl { // Get the neighbour side values tmp > tpNeighbour = receivePointField(commsType); - addToInternalField(pField, tpNeighbour()); + this->addToInternalField(pField, tpNeighbour()); } diff --git a/src/OpenFOAM/fields/PointPatchFields/derived/global/GlobalPointPatchField.C b/src/OpenFOAM/fields/PointPatchFields/derived/global/GlobalPointPatchField.C index 2dec37887..b9e828d07 100644 --- a/src/OpenFOAM/fields/PointPatchFields/derived/global/GlobalPointPatchField.C +++ b/src/OpenFOAM/fields/PointPatchFields/derived/global/GlobalPointPatchField.C @@ -247,7 +247,7 @@ void GlobalPointPatchField { // Set the values from the global sum tmp > trpf = - reduceExtractPoint(patchInternalField(pField)); + this->reduceExtractPoint(patchInternalField(pField)); Field& rpf = trpf();