C++: Remove unused functions in Lexer

Change-Id: I79285a9fc72f26bdfb7c1600d4e7680e02062593
Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
This commit is contained in:
Orgad Shaneh
2014-01-20 09:06:15 +02:00
committed by Orgad Shaneh
parent 185d03bbb5
commit 2216c399e5
2 changed files with 0 additions and 10 deletions

View File

@@ -81,12 +81,6 @@ int Lexer::state() const
void Lexer::setState(int state)
{ _state = state; }
bool Lexer::isIncremental() const
{ return f._isIncremental; }
void Lexer::setIncremental(bool isIncremental)
{ f._isIncremental = isIncremental; }
bool Lexer::scanCommentTokens() const
{ return f._scanCommentTokens; }