gcc-4.7.1 ort

This commit is contained in:
Hrvoje Jasak 2013-05-06 10:39:23 +01:00
parent 01a0a2c728
commit 02ba048269
3 changed files with 6 additions and 6 deletions

View file

@ -240,7 +240,7 @@ updateCoeffs()
// Get internal field to insert values into
Field<Type>& iF = const_cast<Field<Type>&>(this->internalField());
setInInternalField(iF, values);
this->setInInternalField(iF, values);
}
PointPatchField<PatchField, Mesh, PointPatch, MatrixType, Type>::
@ -263,7 +263,7 @@ ValuePointPatchField<PatchField, Mesh, PointPatch, MatrixType, Type>::evaluate
)
{
// Evaluate boundary condition
updateBoundaryField();
this->updateBoundaryField();
if (this->isPointField())
{
@ -273,7 +273,7 @@ ValuePointPatchField<PatchField, Mesh, PointPatch, MatrixType, Type>::evaluate
// Get internal field to insert values into
Field<Type>& iF = const_cast<Field<Type>&>(this->internalField());
setInInternalField(iF, values);
this->setInInternalField(iF, values);
}
PointPatchField<PatchField, Mesh, PointPatch, MatrixType, Type>::evaluate

View file

@ -233,7 +233,7 @@ initAddFieldTempl
const Field<Type2>& pField
) const
{
sendField(patchInternalField(pField), commsType);
this->sendField(patchInternalField(pField), commsType);
}
@ -258,7 +258,7 @@ addFieldTempl
{
// Get the neighbour side values
tmp<Field<Type2> > tpNeighbour = receivePointField<Type2>(commsType);
addToInternalField(pField, tpNeighbour());
this->addToInternalField(pField, tpNeighbour());
}

View file

@ -247,7 +247,7 @@ void GlobalPointPatchField
{
// Set the values from the global sum
tmp<Field<Type2> > trpf =
reduceExtractPoint<Type2>(patchInternalField(pField));
this->reduceExtractPoint<Type2>(patchInternalField(pField));
Field<Type2>& rpf = trpf();