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);


_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to