diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-04-17 21:23:07 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-04-17 21:23:07 +0000 |
commit | ec6c574478a22008847d7ebc2498ef3336752096 (patch) | |
tree | 87d91afa15de95a9a4860e930235db8177d6fdf6 /lib/Lex/Preprocessor.cpp | |
parent | 07339a63b46e38c954fcccbef721c609d0c2040e (diff) |
Added "PreprocessorFactory", an interface for lazily creating Preprocessor objects on-demand.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49868 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/Preprocessor.cpp')
-rw-r--r-- | lib/Lex/Preprocessor.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Lex/Preprocessor.cpp b/lib/Lex/Preprocessor.cpp index ebd3072866..6d08a36fde 100644 --- a/lib/Lex/Preprocessor.cpp +++ b/lib/Lex/Preprocessor.cpp @@ -40,6 +40,8 @@ using namespace clang; //===----------------------------------------------------------------------===// +PreprocessorFactory::~PreprocessorFactory() {} + Preprocessor::Preprocessor(Diagnostic &diags, const LangOptions &opts, TargetInfo &target, SourceManager &SM, HeaderSearch &Headers) |