aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/3rdparty/cplusplus/Lexer.h
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2014-01-20 09:06:15 +0200
committerOrgad Shaneh <orgads@gmail.com>2014-01-20 12:29:15 +0100
commit2216c399e54431245e9ecc4fe780acc0038da262 (patch)
tree186a2ecd362edc263d428400e6ab4773d2d15127 /src/libs/3rdparty/cplusplus/Lexer.h
parent185d03bbb5d8664413756394275be675005efb37 (diff)
C++: Remove unused functions in Lexer
Change-Id: I79285a9fc72f26bdfb7c1600d4e7680e02062593 Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
Diffstat (limited to 'src/libs/3rdparty/cplusplus/Lexer.h')
-rw-r--r--src/libs/3rdparty/cplusplus/Lexer.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libs/3rdparty/cplusplus/Lexer.h b/src/libs/3rdparty/cplusplus/Lexer.h
index 63236104e8..9d4b7b601d 100644
--- a/src/libs/3rdparty/cplusplus/Lexer.h
+++ b/src/libs/3rdparty/cplusplus/Lexer.h
@@ -70,9 +70,6 @@ public:
int state() const;
void setState(int state);
- bool isIncremental() const;
- void setIncremental(bool isIncremental);
-
LanguageFeatures languageFeatures() const { return _languageFeatures; }
void setLanguageFeatures(LanguageFeatures features) { _languageFeatures = features; }
@@ -101,7 +98,6 @@ private:
private:
struct Flags {
- unsigned _isIncremental: 1;
unsigned _scanCommentTokens: 1;
unsigned _scanKeywords: 1;
unsigned _scanAngleStringLiteralTokens: 1;