[Lldb-commits] [lldb] r212413 - llvm::IntrusiveRefCntPtr => std::shared_ptr to match the changes in clang r212388

Sylvestre Ledru sylvestre at debian.org
Sun Jul 6 11:39:40 PDT 2014


Author: sylvestre
Date: Sun Jul  6 13:39:39 2014
New Revision: 212413

URL: http://llvm.org/viewvc/llvm-project?rev=212413&view=rev
Log:
llvm::IntrusiveRefCntPtr => std::shared_ptr to match the changes in clang r212388

Modified:
    lldb/trunk/include/lldb/Symbol/ClangASTContext.h

Modified: lldb/trunk/include/lldb/Symbol/ClangASTContext.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Symbol/ClangASTContext.h?rev=212413&r1=212412&r2=212413&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Symbol/ClangASTContext.h (original)
+++ lldb/trunk/include/lldb/Symbol/ClangASTContext.h Sun Jul  6 13:39:39 2014
@@ -417,7 +417,7 @@ protected:
     std::unique_ptr<clang::SourceManager>           m_source_manager_ap;
     std::unique_ptr<clang::DiagnosticsEngine>       m_diagnostics_engine_ap;
     std::unique_ptr<clang::DiagnosticConsumer>      m_diagnostic_consumer_ap;
-    llvm::IntrusiveRefCntPtr<clang::TargetOptions>  m_target_options_rp;
+    std::shared_ptr<clang::TargetOptions>           m_target_options_rp;
     std::unique_ptr<clang::TargetInfo>              m_target_info_ap;
     std::unique_ptr<clang::IdentifierTable>         m_identifier_table_ap;
     std::unique_ptr<clang::SelectorTable>           m_selector_table_ap;





More information about the lldb-commits mailing list