From 02ba048269d57c9599785e851d688bb5444d5cae Mon Sep 17 00:00:00 2001 From: Hrvoje Jasak Date: Mon, 6 May 2013 10:39:23 +0100 Subject: [PATCH] gcc-4.7.1 ort --- .../PointPatchFields/basic/value/ValuePointPatchField.C | 6 +++--- .../constraint/processor/ProcessorPointPatchField.C | 4 ++-- .../PointPatchFields/derived/global/GlobalPointPatchField.C | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) 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();