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:
Ying Chen 2015-07-27 21:47:14 +00:00
parent 5dab205ced
commit f1dfb4d1eb
1 changed files with 1 additions and 1 deletions

View File

@ -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),