Skip to content
Snippets Groups Projects
Commit 0b464d48 authored by Daniel Malea's avatar Daniel Malea
Browse files

Fix GCC 4.6 build by avoiding delegating ctors

Patch by Abid Hafiz!

llvm-svn: 174519
parent 228d9d3a
No related branches found
No related tags found
No related merge requests found
...@@ -26,17 +26,21 @@ m_summary_sp(), ...@@ -26,17 +26,21 @@ m_summary_sp(),
m_synthetic_sp() m_synthetic_sp()
{} {}
FormatCache::Entry::Entry (lldb::TypeSummaryImplSP summary_sp) : FormatCache::Entry() FormatCache::Entry::Entry (lldb::TypeSummaryImplSP summary_sp) :
m_synthetic_cached(false),
m_synthetic_sp()
{ {
SetSummary (summary_sp); SetSummary (summary_sp);
} }
FormatCache::Entry::Entry (lldb::SyntheticChildrenSP synthetic_sp) : FormatCache::Entry() FormatCache::Entry::Entry (lldb::SyntheticChildrenSP synthetic_sp) :
m_summary_cached(false),
m_summary_sp()
{ {
SetSynthetic (synthetic_sp); SetSynthetic (synthetic_sp);
} }
FormatCache::Entry::Entry (lldb::TypeSummaryImplSP summary_sp,lldb::SyntheticChildrenSP synthetic_sp) : FormatCache::Entry() FormatCache::Entry::Entry (lldb::TypeSummaryImplSP summary_sp,lldb::SyntheticChildrenSP synthetic_sp)
{ {
SetSummary (summary_sp); SetSummary (summary_sp);
SetSynthetic (synthetic_sp); SetSynthetic (synthetic_sp);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment