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(); \ updateCoeffs(); \
} \ } \
\ \
operator==(patchInternalField()); \ this->operator==(patchInternalField()); \
} \ } \
\ \
template<> \ template<> \

View file

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

View file

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