Skip to content

Commit 4b98ca5

Browse files
committed
Fix typo in PairwiseField debug statement
1 parent f4ce9af commit 4b98ca5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Neighbor/PairwiseField.hh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ public:
6060
iterator end() { REQUIRE(!mPairsPtr.expired()); return iterator(&(*mArray.end())); }
6161

6262
// Comparators
63-
bool operator==(const PairwiseField& rhs) const { REQUIRE(!mPairPtr.expired()); return mArray == rhs.mArray; }
64-
bool operator!=(const PairwiseField& rhs) const { REQUIRE(!mPairPtr.expired()); return mArray != rhs.mArray; }
63+
bool operator==(const PairwiseField& rhs) const { REQUIRE(!mPairsPtr.expired()); return mArray == rhs.mArray; }
64+
bool operator!=(const PairwiseField& rhs) const { REQUIRE(!mPairsPtr.expired()); return mArray != rhs.mArray; }
6565

6666
// Other methods
6767
const NodePairList& pairs() const;

0 commit comments

Comments
 (0)