[Lldb-commits] [lldb] r202376 - update the declaration from llvm::OwningPtr to llvm::IntrusiveRefCntPtr to match the clang update (r202346) on ASTContext

Sylvestre Ledru sylvestre at debian.org
Thu Feb 27 02:46:57 PST 2014


Author: sylvestre
Date: Thu Feb 27 04:46:57 2014
New Revision: 202376

URL: http://llvm.org/viewvc/llvm-project?rev=202376&view=rev
Log:
update the declaration from llvm::OwningPtr to llvm::IntrusiveRefCntPtr to match the clang update (r202346) on ASTContext

Modified:
    lldb/trunk/source/Expression/ClangExpressionParser.cpp

Modified: lldb/trunk/source/Expression/ClangExpressionParser.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Expression/ClangExpressionParser.cpp?rev=202376&r1=202375&r2=202376&view=diff
==============================================================================
--- lldb/trunk/source/Expression/ClangExpressionParser.cpp (original)
+++ lldb/trunk/source/Expression/ClangExpressionParser.cpp Thu Feb 27 04:46:57 2014
@@ -356,7 +356,7 @@ ClangExpressionParser::ClangExpressionPa
     
     if (decl_map)
     {
-        llvm::OwningPtr<clang::ExternalASTSource> ast_source(decl_map->CreateProxy());
+        llvm::IntrusiveRefCntPtr<clang::ExternalASTSource> ast_source(decl_map->CreateProxy());
         decl_map->InstallASTContext(ast_context.get());
         ast_context->setExternalSource(ast_source);
     }





More information about the lldb-commits mailing list