[Lldb-commits] [lldb] r253089 - Fix indentation

Enrico Granata via lldb-commits lldb-commits at lists.llvm.org
Fri Nov 13 13:37:47 PST 2015


Author: enrico
Date: Fri Nov 13 15:37:47 2015
New Revision: 253089

URL: http://llvm.org/viewvc/llvm-project?rev=253089&view=rev
Log:
Fix indentation

Modified:
    lldb/trunk/source/DataFormatters/DumpValueObjectOptions.cpp

Modified: lldb/trunk/source/DataFormatters/DumpValueObjectOptions.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/DataFormatters/DumpValueObjectOptions.cpp?rev=253089&r1=253088&r2=253089&view=diff
==============================================================================
--- lldb/trunk/source/DataFormatters/DumpValueObjectOptions.cpp (original)
+++ lldb/trunk/source/DataFormatters/DumpValueObjectOptions.cpp Fri Nov 13 15:37:47 2015
@@ -19,30 +19,30 @@ using namespace lldb;
 using namespace lldb_private;
 
 DumpValueObjectOptions::DumpValueObjectOptions() :
-m_summary_sp(),
-m_root_valobj_name(),
-m_max_ptr_depth(PointerDepth{PointerDepth::Mode::Default,0}),
-m_decl_printing_helper(),
-m_use_synthetic(true),
-m_scope_already_checked(false),
-m_flat_output(false),
-m_ignore_cap(false),
-m_show_types(false),
-m_show_location(false),
-m_use_objc(false),
-m_hide_root_type(false),
-m_hide_name(false),
-m_hide_value(false),
-m_run_validator(false),
-m_use_type_display_name(true),
-m_allow_oneliner_mode(true),
-m_hide_pointer_value(false),
-m_reveal_empty_aggregates(true)
+    m_summary_sp(),
+    m_root_valobj_name(),
+    m_max_ptr_depth(PointerDepth{PointerDepth::Mode::Default,0}),
+    m_decl_printing_helper(),
+    m_use_synthetic(true),
+    m_scope_already_checked(false),
+    m_flat_output(false),
+    m_ignore_cap(false),
+    m_show_types(false),
+    m_show_location(false),
+    m_use_objc(false),
+    m_hide_root_type(false),
+    m_hide_name(false),
+    m_hide_value(false),
+    m_run_validator(false),
+    m_use_type_display_name(true),
+    m_allow_oneliner_mode(true),
+    m_hide_pointer_value(false),
+    m_reveal_empty_aggregates(true)
 {}
 
 
 DumpValueObjectOptions::DumpValueObjectOptions (ValueObject& valobj) :
-DumpValueObjectOptions()
+    DumpValueObjectOptions()
 {
     m_use_dynamic = valobj.GetDynamicValueType();
     m_use_synthetic = valobj.IsSynthetic();
@@ -242,4 +242,4 @@ DumpValueObjectOptions::SetRevealEmptyAg
     m_reveal_empty_aggregates = reveal;
     return *this;
 }
-
+                                




More information about the lldb-commits mailing list