summaryrefslogtreecommitdiffstats
path: root/lldb/source/Breakpoint/BreakpointLocationList.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-04-03 04:14:58 +0000
committerBill Wendling <isanbard@gmail.com>2012-04-03 04:14:58 +0000
commitc9851e26305165a61354ce3dfc7ecd8e03a97dcd (patch)
tree32c0c98432e849b809ff0ddad46251d819518e00 /lldb/source/Breakpoint/BreakpointLocationList.cpp
parent60fd91ff48eca37792bfa4ff8e8fd98080a298ed (diff)
downloadbcm5719-llvm-c9851e26305165a61354ce3dfc7ecd8e03a97dcd.tar.gz
bcm5719-llvm-c9851e26305165a61354ce3dfc7ecd8e03a97dcd.zip
Initialize ivars in the order they are defined in the class.
llvm-svn: 153931
Diffstat (limited to 'lldb/source/Breakpoint/BreakpointLocationList.cpp')
-rw-r--r--lldb/source/Breakpoint/BreakpointLocationList.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Breakpoint/BreakpointLocationList.cpp b/lldb/source/Breakpoint/BreakpointLocationList.cpp
index 7fc4d81e283..250815890ec 100644
--- a/lldb/source/Breakpoint/BreakpointLocationList.cpp
+++ b/lldb/source/Breakpoint/BreakpointLocationList.cpp
@@ -21,12 +21,12 @@ using namespace lldb;
using namespace lldb_private;
BreakpointLocationList::BreakpointLocationList(Breakpoint &owner) :
+ m_owner (owner),
m_locations(),
m_address_to_location (),
m_mutex (Mutex::eMutexTypeRecursive),
- m_new_location_recorder (NULL),
- m_owner (owner),
- m_next_id (0)
+ m_next_id (0),
+ m_new_location_recorder (NULL)
{
}
OpenPOWER on IntegriCloud