remove useless initializations

reverts 6f5bf29e. coverity sucks, thankyouverymuch.
This commit is contained in:
Oswald Buddenhagen
2011-04-05 11:16:37 +02:00
parent 5433b43efd
commit c87eda573c

View File

@@ -115,13 +115,7 @@ void ProFileParser::initialize()
} }
ProFileParser::ProFileParser(ProFileCache *cache, ProFileParserHandler *handler) ProFileParser::ProFileParser(ProFileCache *cache, ProFileParserHandler *handler)
: m_lineNo(0) : m_cache(cache)
, m_state(StNew)
, m_markLine(0)
, m_canElse(false)
, m_invert(false)
, m_operator(NoOperator)
, m_cache(cache)
, m_handler(handler) , m_handler(handler)
{ {
// So that single-threaded apps don't have to call initialize() for now. // So that single-threaded apps don't have to call initialize() for now.