[Lldb-commits] [lldb] r243332 - Fix Windows buildbot failure after rev 243301

Ying Chen chying at google.com
Mon Jul 27 14:47:14 PDT 2015


Author: chying
Date: Mon Jul 27 16:47:14 2015
New Revision: 243332

URL: http://llvm.org/viewvc/llvm-project?rev=243332&view=rev
Log:
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

Modified:
    lldb/trunk/include/lldb/DataFormatters/ValueObjectPrinter.h

Modified: lldb/trunk/include/lldb/DataFormatters/ValueObjectPrinter.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/DataFormatters/ValueObjectPrinter.h?rev=243332&r1=243331&r2=243332&view=diff
==============================================================================
--- lldb/trunk/include/lldb/DataFormatters/ValueObjectPrinter.h (original)
+++ lldb/trunk/include/lldb/DataFormatters/ValueObjectPrinter.h Mon Jul 27 16:47:14 2015
@@ -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),





More information about the lldb-commits mailing list