Preprocessor::isCurrentLexer() now takes a PreprocessorLexer* argument to match against CurPPLexer instead of CurLexer.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59721 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2008-11-20 07:53:31 +00:00
Родитель 69d27b9f2e
Коммит 7062d9e9fc
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -204,8 +204,8 @@ public:
/// isCurrentLexer - Return true if we are lexing directly from the specified
/// lexer.
bool isCurrentLexer(const Lexer *L) const {
return CurLexer.get() == L;
bool isCurrentLexer(const PreprocessorLexer *L) const {
return CurPPLexer == L;
}
/// getCurrentLexer - Return the current file lexer being lexed from. Note