diff options
Diffstat (limited to 'lldb/source/Symbol/Variable.cpp')
-rw-r--r-- | lldb/source/Symbol/Variable.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Symbol/Variable.cpp b/lldb/source/Symbol/Variable.cpp index 27af65ff0be..7a4e12cad86 100644 --- a/lldb/source/Symbol/Variable.cpp +++ b/lldb/source/Symbol/Variable.cpp @@ -91,7 +91,8 @@ Variable::Dump(Stream *s, bool show_context) const s->PutCString(" )"); } - m_declaration.Dump(s); + bool show_fullpaths = false; + m_declaration.Dump(s, show_fullpaths); if (m_location.IsValid()) { |