Skip to content
Snippets Groups Projects
Commit 951e70cd authored by henry's avatar henry
Browse files

Corrected scope of operators.

parent 79475c87
Branches
Tags
No related merge requests found
......@@ -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);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment