Fix initialization order to match that of the source.
authorEric Christopher <echristo@gmail.com>
Wed, 17 Dec 2014 22:25:37 +0000 (22:25 +0000)
committerEric Christopher <echristo@gmail.com>
Wed, 17 Dec 2014 22:25:37 +0000 (22:25 +0000)
llvm-svn: 224467

lldb/source/Breakpoint/Breakpoint.cpp

index 3916b72..bc269cd 100644 (file)
@@ -69,10 +69,10 @@ Breakpoint::Breakpoint (Target &new_target, Breakpoint &source_bp) :
     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);