Silence another warning.

git-svn-id: http://root.cern.ch/svn/root/trunk@47655 27541ba8-7e3a-0410-8455-c3a389f83636
This commit is contained in:
Vassil Vassilev 2012-11-27 16:23:22 +00:00
parent b497a0b37a
commit 27bfa0f1cc

View File

@ -42,7 +42,7 @@ namespace cling {
tok::TokenKind getKind() const { return kind; }
unsigned getLength() const { return bufEnd - bufStart; }
const char* getBufStart() const { return bufStart; }
bool isNot(tok::TokenKind K) const { return kind != (unsigned) K; }
bool isNot(tok::TokenKind K) const { return kind != K; }
friend class PunctuationLexer;