Formatting
This commit is contained in:
parent
c19f0f85b5
commit
9596103e05
3 changed files with 8 additions and 7 deletions
|
@ -217,7 +217,7 @@ void Foam::domainDecomposition::distributeCells()
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Info<< "\nFinished decomposition in "
|
||||
<< decompositionTime.elapsedCpuTime()
|
||||
<< " s" << endl;
|
||||
|
|
|
@ -156,7 +156,8 @@ const objectRegistry& fvsPatchField<Type>::db() const
|
|||
|
||||
template<class Type>
|
||||
template<class GeometricField, class Type2>
|
||||
const typename GeometricField::PatchFieldType& Foam::fvsPatchField<Type>::lookupPatchField
|
||||
const typename GeometricField::PatchFieldType& Foam::fvsPatchField<Type>::
|
||||
lookupPatchField
|
||||
(
|
||||
const word& name,
|
||||
const GeometricField*,
|
||||
|
@ -165,7 +166,8 @@ const typename GeometricField::PatchFieldType& Foam::fvsPatchField<Type>::lookup
|
|||
{
|
||||
return patch_.patchField<GeometricField, Type2>
|
||||
(
|
||||
internalField_.db().objectRegistry::template lookupObject<GeometricField>(name)
|
||||
internalField_.db().objectRegistry::template
|
||||
lookupObject<GeometricField>(name)
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -90,10 +90,9 @@ public:
|
|||
{}
|
||||
|
||||
|
||||
// Destructor
|
||||
|
||||
virtual ~oversetFvPatch()
|
||||
{}
|
||||
//- Destructor
|
||||
virtual ~oversetFvPatch()
|
||||
{}
|
||||
|
||||
|
||||
// Member functions
|
||||
|
|
Reference in a new issue