diff options
author | Chris Lattner <sabre@nondot.org> | 2009-11-03 19:50:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-11-03 19:50:27 +0000 |
commit | e6113de52df132b89c3a5a6141f17d37e83322ae (patch) | |
tree | 321be78f1f81a3e768774fc0638ff43f49d96e0d /include/clang/Frontend/InitPreprocessor.h | |
parent | cf184655319cf7a5b811067cff9d26a5741fd161 (diff) |
Implement support for the -undef command line option, patch by
Roman Divacky! PR5363
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@85932 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/InitPreprocessor.h')
-rw-r--r-- | include/clang/Frontend/InitPreprocessor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Frontend/InitPreprocessor.h b/include/clang/Frontend/InitPreprocessor.h index eb03602dc5..b29ee2728a 100644 --- a/include/clang/Frontend/InitPreprocessor.h +++ b/include/clang/Frontend/InitPreprocessor.h @@ -63,7 +63,8 @@ public: /// environment ready to process a single file. This returns true on error. /// bool InitializePreprocessor(Preprocessor &PP, - const PreprocessorInitOptions& InitOptions); + const PreprocessorInitOptions& InitOptions, + bool undef_macros); } // end namespace clang |