forked from OSchip/llvm-project
Fix Windows buildbot failure after rev 243301
Summary: - Visual Studio doesn't support "list initialization inside member initializer list" - Call inner struct constructor explicitly Reviewers: enrico Subscribers: lldb-commits llvm-svn: 243332
This commit is contained in:
parent
5dab205ced
commit
f1dfb4d1eb
|
@ -79,7 +79,7 @@ struct DumpValueObjectOptions
|
|||
DumpValueObjectOptions() :
|
||||
m_summary_sp(),
|
||||
m_root_valobj_name(),
|
||||
m_max_ptr_depth{PointerDepth::Mode::Default,0},
|
||||
m_max_ptr_depth(PointerDepth{PointerDepth::Mode::Default,0}),
|
||||
m_use_synthetic(true),
|
||||
m_scope_already_checked(false),
|
||||
m_flat_output(false),
|
||||
|
|
Loading…
Reference in New Issue