diff options
author | David Blaikie <dblaikie@gmail.com> | 2017-01-05 19:11:36 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2017-01-05 19:11:36 +0000 |
commit | e3041688531925319b16b89e183e8ef275e2aeb0 (patch) | |
tree | 1d7e5462f2cea98fb96423848698008a6741920e /clang/lib/Lex/Preprocessor.cpp | |
parent | f95113dacf2b16a74dfb034a9cc32ba08cade14d (diff) | |
download | bcm5719-llvm-e3041688531925319b16b89e183e8ef275e2aeb0.tar.gz bcm5719-llvm-e3041688531925319b16b89e183e8ef275e2aeb0.zip |
Move PreprocessorOptions to std::shared_ptr from IntrusiveRefCntPtr
llvm-svn: 291160
Diffstat (limited to 'clang/lib/Lex/Preprocessor.cpp')
-rw-r--r-- | clang/lib/Lex/Preprocessor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Lex/Preprocessor.cpp b/clang/lib/Lex/Preprocessor.cpp index 0f7473b8c1f..91319bedd6f 100644 --- a/clang/lib/Lex/Preprocessor.cpp +++ b/clang/lib/Lex/Preprocessor.cpp @@ -68,7 +68,7 @@ LLVM_INSTANTIATE_REGISTRY(PragmaHandlerRegistry) //===----------------------------------------------------------------------===// ExternalPreprocessorSource::~ExternalPreprocessorSource() { } -Preprocessor::Preprocessor(IntrusiveRefCntPtr<PreprocessorOptions> PPOpts, +Preprocessor::Preprocessor(std::shared_ptr<PreprocessorOptions> PPOpts, DiagnosticsEngine &diags, LangOptions &opts, SourceManager &SM, HeaderSearch &Headers, ModuleLoader &TheModuleLoader, |