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

Initialize ExpressionUnderCursor's _jumpedComma.

parent c46dc2aa
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,7 @@
using namespace CPlusPlus;
ExpressionUnderCursor::ExpressionUnderCursor()
: _jumpedComma(false)
{ }
ExpressionUnderCursor::~ExpressionUnderCursor()
......
......@@ -59,6 +59,7 @@ private:
int previousBlockState(const QTextBlock &block);
bool isAccessToken(const SimpleToken &tk);
private:
bool _jumpedComma;
};
......
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