diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-12-06 09:19:12 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-12-06 09:19:12 +0000 |
commit | 63ceaa32a2371e38d1f912080fe471285e6b6e56 (patch) | |
tree | e74087557214e26a0d860bbd6311142c73962f85 /include/clang/Lex/Preprocessor.h | |
parent | 21a8bed504a95df019771ab1a3dc9ecccfd9cfaa (diff) |
Change Preprocessor::EnterSourceFile to make ErrorStr non-optional, clients should be forced to deal with error conditions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90700 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 cd202e5899..50d1540741 100644 --- a/include/clang/Lex/Preprocessor.h +++ b/include/clang/Lex/Preprocessor.h @@ -335,7 +335,7 @@ public: /// start lexing tokens from it instead of the current buffer. Return true /// and fill in ErrorStr with the error information on failure. bool EnterSourceFile(FileID CurFileID, const DirectoryLookup *Dir, - std::string *ErrorStr = 0); + std::string &ErrorStr); /// EnterMacro - Add a Macro to the top of the include stack and start lexing /// tokens from it instead of the current buffer. Args specifies the |