PORTING: Changes for Intel 2013 (Martin Beaudoin)

This commit is contained in:
Henrik Rusche 2013-12-04 21:00:10 +01:00
parent d83a9adad5
commit 9454c3e2dd
3 changed files with 7 additions and 7 deletions

View file

@ -54,7 +54,7 @@ void wedgeFvPatchField<Type>::evaluate( \
updateCoeffs(); \
} \
\
operator==(patchInternalField()); \
this->operator==(patchInternalField()); \
} \
\
template<> \

View file

@ -48,7 +48,7 @@ void engineTimeVaryingUniformFixedValueFvPatchField<scalar>::updateCoeffs()
checkTable();
operator==
this->operator==
(
interpolateXY
(
@ -73,7 +73,7 @@ void engineTimeVaryingUniformFixedValueFvPatchField<vector>::updateCoeffs()
checkTable();
operator==
this->operator==
(
-interpolateXY
(
@ -98,7 +98,7 @@ void engineTimeVaryingUniformFixedValueFvPatchField<sphericalTensor>::updateCoef
checkTable();
operator==
this->operator==
(
interpolateXY
(
@ -123,7 +123,7 @@ void engineTimeVaryingUniformFixedValueFvPatchField<symmTensor>::updateCoeffs()
checkTable();
operator==
this->operator==
(
interpolateXY
(
@ -164,7 +164,7 @@ void engineTimeVaryingUniformFixedValueFvPatchField<tensor>::updateCoeffs()
checkTable();
operator==
this->operator==
(
interpolateXY
(

View file

@ -53,7 +53,7 @@ void wedgeFaPatchField<scalar>::evaluate(const Pstream::commsTypes)
updateCoeffs();
}
operator==(patchInternalField());
this->operator==(patchInternalField());
}