From 9454c3e2dd17de7dfd34cb47c2c2696471846834 Mon Sep 17 00:00:00 2001 From: Henrik Rusche Date: Wed, 4 Dec 2013 21:00:10 +0100 Subject: [PATCH] PORTING: Changes for Intel 2013 (Martin Beaudoin) --- .../fields/fvPatchFields/wedgeFvPatchVectorNFields.C | 2 +- .../engineTimeVaryingUniformFixedValueFvPatchFields.C | 10 +++++----- .../constraint/wedge/wedgeFaPatchScalarField.C | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/VectorN/finiteVolume/fields/fvPatchFields/wedgeFvPatchVectorNFields.C b/src/VectorN/finiteVolume/fields/fvPatchFields/wedgeFvPatchVectorNFields.C index 45c904646..526e49cf3 100644 --- a/src/VectorN/finiteVolume/fields/fvPatchFields/wedgeFvPatchVectorNFields.C +++ b/src/VectorN/finiteVolume/fields/fvPatchFields/wedgeFvPatchVectorNFields.C @@ -54,7 +54,7 @@ void wedgeFvPatchField::evaluate( \ updateCoeffs(); \ } \ \ - operator==(patchInternalField()); \ + this->operator==(patchInternalField()); \ } \ \ template<> \ diff --git a/src/engine/derivedFvPatchFields/engineTimeVaryingUniformFixedValue/engineTimeVaryingUniformFixedValueFvPatchFields.C b/src/engine/derivedFvPatchFields/engineTimeVaryingUniformFixedValue/engineTimeVaryingUniformFixedValueFvPatchFields.C index e07cfd25c..7a63f1206 100644 --- a/src/engine/derivedFvPatchFields/engineTimeVaryingUniformFixedValue/engineTimeVaryingUniformFixedValueFvPatchFields.C +++ b/src/engine/derivedFvPatchFields/engineTimeVaryingUniformFixedValue/engineTimeVaryingUniformFixedValueFvPatchFields.C @@ -48,7 +48,7 @@ void engineTimeVaryingUniformFixedValueFvPatchField::updateCoeffs() checkTable(); - operator== + this->operator== ( interpolateXY ( @@ -73,7 +73,7 @@ void engineTimeVaryingUniformFixedValueFvPatchField::updateCoeffs() checkTable(); - operator== + this->operator== ( -interpolateXY ( @@ -98,7 +98,7 @@ void engineTimeVaryingUniformFixedValueFvPatchField::updateCoef checkTable(); - operator== + this->operator== ( interpolateXY ( @@ -123,7 +123,7 @@ void engineTimeVaryingUniformFixedValueFvPatchField::updateCoeffs() checkTable(); - operator== + this->operator== ( interpolateXY ( @@ -164,7 +164,7 @@ void engineTimeVaryingUniformFixedValueFvPatchField::updateCoeffs() checkTable(); - operator== + this->operator== ( interpolateXY ( diff --git a/src/finiteArea/fields/faPatchFields/constraint/wedge/wedgeFaPatchScalarField.C b/src/finiteArea/fields/faPatchFields/constraint/wedge/wedgeFaPatchScalarField.C index 5f0c8a0b9..f0ebbcc20 100644 --- a/src/finiteArea/fields/faPatchFields/constraint/wedge/wedgeFaPatchScalarField.C +++ b/src/finiteArea/fields/faPatchFields/constraint/wedge/wedgeFaPatchScalarField.C @@ -53,7 +53,7 @@ void wedgeFaPatchField::evaluate(const Pstream::commsTypes) updateCoeffs(); } - operator==(patchInternalField()); + this->operator==(patchInternalField()); }