Skip to content
Snippets Groups Projects
Commit 7380a0fc authored by Ralf Habacker's avatar Ralf Habacker
Browse files

Coverity check of master@e2a24e0, CID 71501: Uninitialized scalar field (UNINIT_CTOR).

CCBUG:340646
parent 8e000103
No related branches found
No related tags found
No related merge requests found
......@@ -374,6 +374,10 @@ inline Token::Token(int type, int position, int length, const QString& text)
: m_type(type),
m_position(position),
m_length(length),
m_startLine(0),
m_startColumn(0),
m_endLine(0),
m_endColumn(0),
m_text(text)
{
DBG_LEXER << type << position << length << text.mid(position, length);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment