зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
2dea64a470
Коммит
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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче