diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:50:09 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:50:09 +0000 |
commit | f3fbd1c0586ff6ec7895991e6c28f61a503c36a8 (patch) | |
tree | 48d008fd3df8c0e73271a4b18474e0aac6dbfe33 /source/API/SBBlock.cpp | |
parent | 2fc5d2d1dfaf623ce4e24cd8590565902f8c557c (diff) |
Notes
Diffstat (limited to 'source/API/SBBlock.cpp')
-rw-r--r-- | source/API/SBBlock.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/source/API/SBBlock.cpp b/source/API/SBBlock.cpp index fdbbbc045279..03ee7343c9f5 100644 --- a/source/API/SBBlock.cpp +++ b/source/API/SBBlock.cpp @@ -131,7 +131,11 @@ SBBlock::AppendVariables (bool can_create, bool get_parent_variables, lldb_priva if (IsValid()) { bool show_inline = true; - m_opaque_ptr->AppendVariables (can_create, get_parent_variables, show_inline, var_list); + m_opaque_ptr->AppendVariables (can_create, + get_parent_variables, + show_inline, + [](Variable*) { return true; }, + var_list); } } @@ -290,6 +294,7 @@ SBBlock::GetVariables (lldb::SBFrame& frame, { case eValueTypeVariableGlobal: case eValueTypeVariableStatic: + case eValueTypeVariableThreadLocal: add_variable = statics; break; @@ -352,6 +357,7 @@ SBBlock::GetVariables (lldb::SBTarget& target, { case eValueTypeVariableGlobal: case eValueTypeVariableStatic: + case eValueTypeVariableThreadLocal: add_variable = statics; break; |