Fix build with GCC 4.6.2 (non-c++11 compilant compiler)

- delegating c'tors not supported

llvm-svn: 191709
This commit is contained in:
Daniel Malea 2013-09-30 23:12:05 +00:00
parent f6dfe33492
commit 73435afda7
1 changed files with 16 additions and 5 deletions

View File

@ -48,11 +48,22 @@ ValueObjectPrinter::ValueObjectPrinter (ValueObject* valobj,
const DumpValueObjectOptions& options,
uint32_t ptr_depth,
uint32_t curr_depth) :
ValueObjectPrinter(valobj,s,options)
{
m_ptr_depth = ptr_depth;
m_curr_depth = curr_depth;
}
m_orig_valobj(valobj),
m_valobj(nullptr),
m_stream(s),
options(options),
m_ptr_depth(ptr_depth),
m_curr_depth(curr_depth),
m_should_print(eLazyBoolCalculate),
m_is_nil(eLazyBoolCalculate),
m_is_ptr(eLazyBoolCalculate),
m_is_ref(eLazyBoolCalculate),
m_is_aggregate(eLazyBoolCalculate),
m_summary_formatter({nullptr,false}),
m_value(),
m_summary(),
m_error()
{ }
bool
ValueObjectPrinter::PrintValueObject ()