Skip to content
Snippets Groups Projects
Commit e9a97ea6 authored by Roberto Raggi's avatar Roberto Raggi
Browse files

Initialize m_line and m_column

parent c9742743
No related branches found
No related tags found
No related merge requests found
......@@ -165,7 +165,8 @@ class CheckDocument: protected ASTVisitor
public:
CheckDocument(Document::Ptr doc, Snapshot snapshot)
: ASTVisitor(doc->control()), _doc(doc), _snapshot(snapshot)
: ASTVisitor(doc->control()), _doc(doc), _snapshot(snapshot),
_line(0), _column(0)
{ }
QList<QuickFixOperationPtr> operator()(QTextCursor tc)
......
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