| commit | ff7692a867baca64ee3a249e6387ae039fdc531a | [log] [tgz] | 
|---|---|---|
| author | Greg Clayton <gclayton@apple.com> | Thu Feb 02 18:16:59 2012 +0000 | 
| committer | Greg Clayton <gclayton@apple.com> | Thu Feb 02 18:16:59 2012 +0000 | 
| tree | 284265b37e6f7227a6ddb5f166ad698b3f3a2e73 | |
| parent | ff3789a6bb0e67fd4844bd837df20d7f2c807601 [diff] [blame] | 
Fixed a build breakage when trying to assign a shared pointer using a raw pointer. llvm-svn: 149609
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp index 7b9327f..cd62226 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp +++ b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
@@ -4204,7 +4204,7 @@ MakeUserID(type_cu->GetOffset())); m_die_to_type[die] = resolved_type; - type_sp = resolved_type; + type_sp = resolved_type->shared_from_this(); break; } }