diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-17 08:06:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-17 08:06:50 +0000 |
commit | f056d92e182cbe4f62c8d14102544dc38066dabc (patch) | |
tree | d3ee1ce1e41e88a689a7cdf25020f476d88207fc /include/clang/Lex/PTHManager.h | |
parent | 88d3ac1341aa016cabd966c5b113a95ac05ea43f (diff) |
simplify PTHManager::CreateLexer
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62424 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Lex/PTHManager.h')
-rw-r--r-- | include/clang/Lex/PTHManager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Lex/PTHManager.h b/include/clang/Lex/PTHManager.h index c4ecfd6ed1..67e3666758 100644 --- a/include/clang/Lex/PTHManager.h +++ b/include/clang/Lex/PTHManager.h @@ -128,7 +128,7 @@ public: /// CreateLexer - Return a PTHLexer that "lexes" the cached tokens for the /// specified file. This method returns NULL if no cached tokens exist. /// It is the responsibility of the caller to 'delete' the returned object. - PTHLexer *CreateLexer(FileID FID, const FileEntry *FE); + PTHLexer *CreateLexer(FileID FID); unsigned getSpelling(SourceLocation Loc, const char *&Buffer); private: |