[Lldb-commits] [lldb] r224467 - Fix initialization order to match that of the source.

Eric Christopher echristo at gmail.com
Wed Dec 17 14:25:37 PST 2014


Author: echristo
Date: Wed Dec 17 16:25:37 2014
New Revision: 224467

URL: http://llvm.org/viewvc/llvm-project?rev=224467&view=rev
Log:
Fix initialization order to match that of the source.

Modified:
    lldb/trunk/source/Breakpoint/Breakpoint.cpp

Modified: lldb/trunk/source/Breakpoint/Breakpoint.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Breakpoint/Breakpoint.cpp?rev=224467&r1=224466&r2=224467&view=diff
==============================================================================
--- lldb/trunk/source/Breakpoint/Breakpoint.cpp (original)
+++ lldb/trunk/source/Breakpoint/Breakpoint.cpp Wed Dec 17 16:25:37 2014
@@ -69,10 +69,10 @@ Breakpoint::Breakpoint (Target &new_targ
     m_being_created(true),
     m_hardware(source_bp.m_hardware),
     m_target(new_target),
+    m_name_list (source_bp.m_name_list),
     m_options (source_bp.m_options),
     m_locations(*this),
-    m_resolve_indirect_symbols(source_bp.m_resolve_indirect_symbols),
-    m_name_list (source_bp.m_name_list)
+    m_resolve_indirect_symbols(source_bp.m_resolve_indirect_symbols)
 {
     // Now go through and copy the filter & resolver:
     m_resolver_sp = source_bp.m_resolver_sp->CopyForBreakpoint(*this);





More information about the lldb-commits mailing list