From 22a6b3b27750c90a7967724ef4b013fa12fa2a86 Mon Sep 17 00:00:00 2001 From: Darryl Pogue Date: Fri, 24 Feb 2012 22:56:02 -0800 Subject: [PATCH] Fix a Clang error from pnUtHash. --- Sources/Plasma/NucleusLib/pnUtils/pnUtHash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Plasma/NucleusLib/pnUtils/pnUtHash.h b/Sources/Plasma/NucleusLib/pnUtils/pnUtHash.h index 1f44c2d9..6e6f12b2 100644 --- a/Sources/Plasma/NucleusLib/pnUtils/pnUtHash.h +++ b/Sources/Plasma/NucleusLib/pnUtils/pnUtHash.h @@ -548,7 +548,7 @@ const T * THashTable::FindNext (const K & key, const T * object) const { unsigned hash = key.GetHash(); const LIST(T) & slotList = this->GetSlotList(hash); for (const T * curr = slotList.Next(object); curr; curr = slotList.Next(curr)) - if ((GetHash(curr) == hash) && (*curr == key)) + if ((this->GetHash(curr) == hash) && (*curr == key)) return curr; return nil; }