diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-11-04 21:13:15 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-04 21:13:15 +0000 |
commit | 938963f076418aa61b570e5317240f66642af2df (patch) | |
tree | f4ce2da6486dede8022ced83b8bfd98781206890 /include/clang/Frontend/InitPreprocessor.h | |
parent | 468fe246192c3683360d1a6b1b333d85b8794f77 (diff) |
InitializePreprocessor cannot fail.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86048 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/InitPreprocessor.h')
-rw-r--r-- | include/clang/Frontend/InitPreprocessor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Frontend/InitPreprocessor.h b/include/clang/Frontend/InitPreprocessor.h index bf27b19aa3..415acea79a 100644 --- a/include/clang/Frontend/InitPreprocessor.h +++ b/include/clang/Frontend/InitPreprocessor.h @@ -69,9 +69,9 @@ public: }; /// InitializePreprocessor - Initialize the preprocessor getting it and the -/// environment ready to process a single file. This returns true on error. +/// environment ready to process a single file. /// -bool InitializePreprocessor(Preprocessor &PP, +void InitializePreprocessor(Preprocessor &PP, const PreprocessorInitOptions& InitOptions); } // end namespace clang |