Attempt to fix HP-UX and OS/2 bustage. b=146532

This commit is contained in:
dbaron%fas.harvard.edu 2002-07-02 03:42:11 +00:00
Родитель 6a050d9a3d
Коммит f528da681f
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -76,15 +76,15 @@ class nsITimer;
class nsIMemory;
class NS_COM nsRecyclingAllocator {
#ifdef XP_OS2
public:
#else
protected:
#endif
struct Block {
PRUint32 bytes;
};
// Make |BlockStoreNode| a |friend| so it can access |Block|.
struct BlockStoreNode;
friend struct BlockStoreNode;
struct BlockStoreNode {
BlockStoreNode() : bytes(0), block(nsnull), next(nsnull) {};
PRUint32 bytes;