diff options
| author | Enrico Granata <egranata@apple.com> | 2015-03-12 22:17:07 +0000 |
|---|---|---|
| committer | Enrico Granata <egranata@apple.com> | 2015-03-12 22:17:07 +0000 |
| commit | 495dccd67f94e791d9b84fdcac1cdea4f303ea71 (patch) | |
| tree | 8bf0089a68eba1bb8fc5b1f490a1f1532820ca95 /lldb/source/DataFormatters/LibCxx.cpp | |
| parent | 3fa6dc904a58c8433add5576025e48eab8cbad10 (diff) | |
| download | bcm5719-llvm-495dccd67f94e791d9b84fdcac1cdea4f303ea71.tar.gz bcm5719-llvm-495dccd67f94e791d9b84fdcac1cdea4f303ea71.zip | |
Fix a bug in the data formatters where summary strings would not look into the non-synthetic value for child members if the ValueObject being formatted happened to have a synthetic value
rdar://15630776
llvm-svn: 232114
Diffstat (limited to 'lldb/source/DataFormatters/LibCxx.cpp')
| -rw-r--r-- | lldb/source/DataFormatters/LibCxx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/DataFormatters/LibCxx.cpp b/lldb/source/DataFormatters/LibCxx.cpp index 728ad84341f..5bbf53d2e1c 100644 --- a/lldb/source/DataFormatters/LibCxx.cpp +++ b/lldb/source/DataFormatters/LibCxx.cpp @@ -266,7 +266,7 @@ lldb_private::formatters::LibCxxMapIteratorSyntheticFrontEnd::Update() NULL, NULL, NULL, - ValueObject::GetValueForExpressionPathOptions().DontCheckDotVsArrowSyntax().DontAllowSyntheticChildren(), + ValueObject::GetValueForExpressionPathOptions().DontCheckDotVsArrowSyntax().SetSyntheticChildrenTraversal(ValueObject::GetValueForExpressionPathOptions::SyntheticChildrenTraversal::None), NULL).get(); return false; |

