[Lldb-commits] [lldb] r153931 - /lldb/trunk/source/Breakpoint/BreakpointLocationList.cpp
Bill Wendling
isanbard at gmail.com
Mon Apr 2 21:14:58 PDT 2012
Author: void
Date: Mon Apr 2 23:14:58 2012
New Revision: 153931
URL: http://llvm.org/viewvc/llvm-project?rev=153931&view=rev
Log:
Initialize ivars in the order they are defined in the class.
Modified:
lldb/trunk/source/Breakpoint/BreakpointLocationList.cpp
Modified: lldb/trunk/source/Breakpoint/BreakpointLocationList.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Breakpoint/BreakpointLocationList.cpp?rev=153931&r1=153930&r2=153931&view=diff
==============================================================================
--- lldb/trunk/source/Breakpoint/BreakpointLocationList.cpp (original)
+++ lldb/trunk/source/Breakpoint/BreakpointLocationList.cpp Mon Apr 2 23:14:58 2012
@@ -21,12 +21,12 @@
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)
{
}
More information about the lldb-commits
mailing list