diff options
author | Chris Lattner <sabre@nondot.org> | 2007-07-23 04:15:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-07-23 04:15:27 +0000 |
commit | f1c99acc544a4e70f308db4e7200ca04cd5a06d2 (patch) | |
tree | c48c6046cdc794ef1fb08904d53848b12782dd2e /include/clang/Lex/Preprocessor.h | |
parent | 0f67032078de7b8944eb8dc5fea4fef6f483c385 (diff) |
refactor the interface to Preprocessor::GetIncludeFilenameSpelling,
no functionality changes.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40414 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Lex/Preprocessor.h')
-rw-r--r-- | include/clang/Lex/Preprocessor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Lex/Preprocessor.h b/include/clang/Lex/Preprocessor.h index b4c64f1dcb..ff1faaa58c 100644 --- a/include/clang/Lex/Preprocessor.h +++ b/include/clang/Lex/Preprocessor.h @@ -409,7 +409,7 @@ private: /// caller is expected to provide a buffer that is large enough to hold the /// spelling of the filename, but is also expected to handle the case when /// this method decides to use a different buffer. - bool GetIncludeFilenameSpelling(const Token &FNTok, + bool GetIncludeFilenameSpelling(SourceLocation Loc, const char *&BufStart, const char *&BufEnd); /// LookupFile - Given a "foo" or <foo> reference, look up the indicated file, |