diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectFrame.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectFrame.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectFrame.cpp b/lldb/source/Commands/CommandObjectFrame.cpp index 12670a1..eedc0cc 100644 --- a/lldb/source/Commands/CommandObjectFrame.cpp +++ b/lldb/source/Commands/CommandObjectFrame.cpp @@ -499,7 +499,8 @@ public: m_varobj_options.show_types, m_varobj_options.show_location, m_varobj_options.use_objc, - m_varobj_options.use_dynamic, + m_varobj_options.use_dynamic, + m_varobj_options.use_synth, false, m_varobj_options.flat_output, m_varobj_options.no_summary_depth); @@ -552,6 +553,7 @@ public: m_varobj_options.show_location, m_varobj_options.use_objc, m_varobj_options.use_dynamic, + m_varobj_options.use_synth, false, m_varobj_options.flat_output, m_varobj_options.no_summary_depth); @@ -643,6 +645,7 @@ public: m_varobj_options.show_location, m_varobj_options.use_objc, m_varobj_options.use_dynamic, + m_varobj_options.use_synth, false, m_varobj_options.flat_output, m_varobj_options.no_summary_depth); |