Fix warnings introduced by reordering member variables

Change-Id: I37bc8f9bc874de52281b8597838ef8addae1a1a3
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
Tobias Hunger
2013-02-21 14:12:36 +01:00
parent 27de678783
commit 3ae8323d54
5 changed files with 7 additions and 6 deletions

View File

@@ -547,14 +547,14 @@ Preprocessor::State::State()
, m_skipping(MAX_LEVEL)
, m_trueTest(MAX_LEVEL)
, m_ifLevel(0)
, m_tokenBuffer(0)
, m_tokenBufferDepth(0)
, m_tokenBuffer(0)
, m_inPreprocessorDirective(false)
, m_result(0)
, m_markExpandedTokens(true)
, m_noLines(false)
, m_inCondition(false)
, m_offsetRef(0)
, m_result(0)
, m_lineRef(1)
, m_expansionStatus(NotExpanding)
, m_includeGuardState(IncludeGuardState_BeforeIfndef)