Bug 659187: Make member vars in nsMemoryReporterManager.h match ordering in constructor init list, to fix build warning. r=njn

This commit is contained in:
Daniel Holbert 2011-05-24 03:35:10 -07:00
Родитель 5dc21abb4e
Коммит a555712e02
1 изменённых файлов: 4 добавлений и 3 удалений

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

@ -20,9 +20,10 @@ public:
~nsMemoryReporter();
protected:
nsCString mPath, mDesc;
PRInt32 mKind;
PRInt64 mMemoryUsed;
nsCString mPath;
PRInt32 mKind;
nsCString mDesc;
PRInt64 mMemoryUsed;
};