[Lldb-commits] [lldb] r176473 - Fix ivar ordering for Process ctor to match the order they're
Jason Molenda
jmolenda at apple.com
Mon Mar 4 19:33:59 PST 2013
Author: jmolenda
Date: Mon Mar 4 21:33:59 2013
New Revision: 176473
URL: http://llvm.org/viewvc/llvm-project?rev=176473&view=rev
Log:
Fix ivar ordering for Process ctor to match the order they're
declared in the .h file.
Modified:
lldb/trunk/source/Target/Process.cpp
Modified: lldb/trunk/source/Target/Process.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/Process.cpp?rev=176473&r1=176472&r2=176473&view=diff
==============================================================================
--- lldb/trunk/source/Target/Process.cpp (original)
+++ lldb/trunk/source/Target/Process.cpp Mon Mar 4 21:33:59 2013
@@ -1023,8 +1023,8 @@ Process::Process(Target &target, Listene
m_currently_handling_event(false),
m_finalize_called(false),
m_last_broadcast_state (eStateInvalid),
- m_can_jit(eCanJITDontKnow),
- m_destroy_in_process (false)
+ m_destroy_in_process (false),
+ m_can_jit(eCanJITDontKnow)
{
CheckInWithManager ();
More information about the lldb-commits
mailing list