diff options
Diffstat (limited to 'lldb/source/Target/StackFrameList.cpp')
-rw-r--r-- | lldb/source/Target/StackFrameList.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Target/StackFrameList.cpp b/lldb/source/Target/StackFrameList.cpp index 6ad17994536..aef35a8d140 100644 --- a/lldb/source/Target/StackFrameList.cpp +++ b/lldb/source/Target/StackFrameList.cpp @@ -38,10 +38,10 @@ StackFrameList::StackFrameList ) : 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) { } |