From a72900cd1a6f15e81624dfc80270808f24552eb6 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 25 Jun 2014 01:06:04 -0700 Subject: [PATCH] Fix reorder warning in tier0/vprof.h. --- public/tier0/vprof.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/tier0/vprof.h b/public/tier0/vprof.h index 5267495f..686d7610 100644 --- a/public/tier0/vprof.h +++ b/public/tier0/vprof.h @@ -775,9 +775,9 @@ private: inline CVProfNode::CVProfNode( const tchar * pszName, int detailLevel, CVProfNode *pParent, const tchar *pBudgetGroupName, int budgetFlags ) : m_pszName( pszName ), + m_nRecursions( 0 ), m_nCurFrameCalls( 0 ), m_nPrevFrameCalls( 0 ), - m_nRecursions( 0 ), m_pParent( pParent ), m_pChild( NULL ), m_pSibling( NULL ),