projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
140d41b
)
Fix initialization order to match that of the source.
author
Eric Christopher
<echristo@gmail.com>
Wed, 17 Dec 2014 22:25:37 +0000
(22:25 +0000)
committer
Eric Christopher
<echristo@gmail.com>
Wed, 17 Dec 2014 22:25:37 +0000
(22:25 +0000)
llvm-svn: 224467
lldb/source/Breakpoint/Breakpoint.cpp
patch
|
blob
|
history
diff --git
a/lldb/source/Breakpoint/Breakpoint.cpp
b/lldb/source/Breakpoint/Breakpoint.cpp
index
3916b72
..
bc269cd
100644
(file)
--- a/
lldb/source/Breakpoint/Breakpoint.cpp
+++ b/
lldb/source/Breakpoint/Breakpoint.cpp
@@
-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);