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

Oops! operators are not objc keywords :)

parent 00f7cdac
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,7 @@ bool SimpleToken::isComment() const ...@@ -57,7 +57,7 @@ bool SimpleToken::isComment() const
bool SimpleToken::isObjCAtKeyword() const bool SimpleToken::isObjCAtKeyword() const
{ {
return _kind >= T_FIRST_LITERAL && _kind <= T_LAST_OBJC_AT_KEYWORD; return _kind >= T_FIRST_OBJC_AT_KEYWORD && _kind <= T_LAST_OBJC_AT_KEYWORD;
} }
SimpleLexer::SimpleLexer() SimpleLexer::SimpleLexer()
......
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