Corrected scope of operators.

This commit is contained in:
henry 2008-06-11 13:31:26 +01:00
parent 79475c871e
commit 951e70cd6b

View File

@ -617,13 +617,13 @@ Foam::label Foam::treeBoundBox::distanceCmp
// * * * * * * * * * * * * * * * Friend Operators * * * * * * * * * * * * * //
bool operator==(const treeBoundBox& a, const treeBoundBox& b)
bool Foam::operator==(const treeBoundBox& a, const treeBoundBox& b)
{
return (a.min() == b.min()) && (a.max() == b.max());
}
bool operator!=(const treeBoundBox& a, const treeBoundBox& b)
bool Foam::operator!=(const treeBoundBox& a, const treeBoundBox& b)
{
return !(a == b);
}