diff options
| author | Roberto Raggi <[email protected]> | 2009-07-13 12:28:22 +0200 |
|---|---|---|
| committer | Roberto Raggi <[email protected]> | 2009-07-13 12:28:22 +0200 |
| commit | e9d0285fbc3c76bda84362a84251fb87718de55c (patch) | |
| tree | 74279ef2edb6391600681e86a0b68dc3449d2cf4 /src/libs/cplusplus/SimpleLexer.cpp | |
| parent | 00f7cdac36bb4ba737d0de558420cba1c16177c2 (diff) | |
Oops! operators are not objc keywords :)
Diffstat (limited to 'src/libs/cplusplus/SimpleLexer.cpp')
| -rw-r--r-- | src/libs/cplusplus/SimpleLexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/cplusplus/SimpleLexer.cpp b/src/libs/cplusplus/SimpleLexer.cpp index 93b93ec73cd..60ce47cd8fc 100644 --- a/src/libs/cplusplus/SimpleLexer.cpp +++ b/src/libs/cplusplus/SimpleLexer.cpp @@ -57,7 +57,7 @@ bool SimpleToken::isComment() 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() |
