C++: Remove unused functions in Lexer

Change-Id: I78b70eead1c64b9925272c50cc6109c5b415574d
Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
This commit is contained in:
Nikolai Kosjar
2013-12-13 18:32:15 +01:00
parent d84bd0b359
commit 6f63f6b647
2 changed files with 0 additions and 14 deletions

View File

@@ -46,9 +46,6 @@ public:
unsigned tokenOffset() const;
unsigned tokenLength() const;
const char *tokenBegin() const;
const char *tokenEnd() const;
unsigned currentLine() const;
bool scanCommentTokens() const;
void setScanCommentTokens(bool onoff);
@@ -121,10 +118,8 @@ private:
};
unsigned _currentLine;
LanguageFeatures _languageFeatures;
};
} // namespace CPlusPlus
#endif // CPLUSPLUS_LEXER_H