Bug 614286 followup - Reorder the constructor initializer list to prevent compiler warnings

--HG--
extra : rebase_source : 3ab3d1371f8d8b396e665cffb5c57dc96a7187f3
This commit is contained in:
Ehsan Akhgari 2010-12-03 09:56:13 -05:00
parent 751a2acd04
commit 8c6bb3c99a

View File

@ -86,10 +86,10 @@ nsHttpConnectionMgr::nsHttpConnectionMgr()
, mMaxConnsPerProxy(0)
, mMaxPersistConnsPerHost(0)
, mMaxPersistConnsPerProxy(0)
, mIsShuttingDown(PR_FALSE)
, mNumActiveConns(0)
, mNumIdleConns(0)
, mTimeOfNextWakeUp(LL_MAXUINT)
, mIsShuttingDown(PR_FALSE)
{
LOG(("Creating nsHttpConnectionMgr @%x\n", this));
}