From b8daa04c8867e6a09ad8225bb7a0fbed0746d73a Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 27 Oct 2000 17:51:33 +0000 Subject: [PATCH] *** empty log message *** --- panda/src/builder/builderTypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/builder/builderTypes.h b/panda/src/builder/builderTypes.h index 55b1174f5b..845b5c5c2a 100644 --- a/panda/src/builder/builderTypes.h +++ b/panda/src/builder/builderTypes.h @@ -162,7 +162,7 @@ public: return _v.almost_equal(other._v, nearly_zero); } bool operator != (const BuilderC &other) const { - return !(*this == other); + return !operator == (other); } bool operator < (const BuilderC &other) const { return (_v.compare_to(other._v) < 0);