ENH: Updated writeMinMax function

This commit is contained in:
andy
2013-10-11 11:37:34 +01:00
parent 7988749745
commit c2567a3616

View File

@ -934,8 +934,8 @@ void Foam::GeometricField<Type, PatchField, GeoMesh>::writeMinMax
) const
{
os << "min/max(" << this->name() << ") = "
<< min(*this).value() << ", "
<< max(*this).value()
<< Foam::min(*this).value() << ", "
<< Foam::max(*this).value()
<< endl;
}