Browse Source

*** empty log message ***

David Rose 25 years ago
parent
commit
b8daa04c88
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/builder/builderTypes.h

+ 1 - 1
panda/src/builder/builderTypes.h

@@ -162,7 +162,7 @@ public:
     return _v.almost_equal(other._v, nearly_zero);
     return _v.almost_equal(other._v, nearly_zero);
   }
   }
   bool operator != (const BuilderC &other) const {
   bool operator != (const BuilderC &other) const {
-    return !(*this == other);
+    return !operator == (other);
   }
   }
   bool operator < (const BuilderC &other) const {
   bool operator < (const BuilderC &other) const {
     return (_v.compare_to(other._v) < 0);
     return (_v.compare_to(other._v) < 0);