From 951e70cd6b3a44fe7dba2708e8702e424f2394dd Mon Sep 17 00:00:00 2001 From: henry <Henry Weller h.weller@opencfd.co.uk> Date: Wed, 11 Jun 2008 13:31:26 +0100 Subject: [PATCH] Corrected scope of operators. --- src/meshTools/octree/treeBoundBox.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/meshTools/octree/treeBoundBox.C b/src/meshTools/octree/treeBoundBox.C index e3972f3a26b..1f79a35c3a4 100644 --- a/src/meshTools/octree/treeBoundBox.C +++ b/src/meshTools/octree/treeBoundBox.C @@ -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); } -- GitLab