Order of initialization lists.
This patch fixes all of the warnings due to unordered initialization lists.
Patch by Marco Minutoli.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@129290 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Target/StackFrameList.cpp b/source/Target/StackFrameList.cpp
index 6ad1799..aef35a8 100644
--- a/source/Target/StackFrameList.cpp
+++ b/source/Target/StackFrameList.cpp
@@ -38,10 +38,10 @@
) :
m_thread (thread),
m_prev_frames_sp (prev_frames_sp),
- m_show_inlined_frames (show_inline_frames),
m_mutex (Mutex::eMutexTypeRecursive),
m_frames (),
- m_selected_frame_idx (0)
+ m_selected_frame_idx (0),
+ m_show_inlined_frames (show_inline_frames)
{
}