mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 00:01:50 +00:00
bug 356734: nsBaseHashtable.h casts a pointer to a PRBool, which gives an error in 64 bit gcc
r=dbradly, sr=biesi
This commit is contained in:
parent
2dea64a470
commit
cc270ac04a
@ -276,7 +276,7 @@ public:
|
||||
~nsBaseHashtableMT();
|
||||
|
||||
PRBool Init(PRUint32 initSize = PL_DHASH_MIN_SIZE);
|
||||
PRBool IsInitialized() const { return (PRBool) mLock; }
|
||||
PRBool IsInitialized() const { return mLock != nsnull; }
|
||||
PRUint32 Count() const;
|
||||
PRBool Get(KeyType aKey, UserDataType* pData) const;
|
||||
PRBool Put(KeyType aKey, UserDataType aData);
|
||||
|
Loading…
Reference in New Issue
Block a user