Skip to content

Commit 949d4d1

Browse files
committed
[lldb] Replace radar link with documenting comment (NFC)
This replaces the radar link with a comment explaining the underlying problem, which is that when the (dynamic) type of an object changes, so does their synthetic filter of choice, which requires us to regenerate the filter.
1 parent 7963aa1 commit 949d4d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/source/Core/ValueObjectSyntheticFilter.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ bool ValueObjectSynthetic::UpdateValue() {
163163
return false;
164164
}
165165

166-
// regenerate the synthetic filter if our typename changes
167-
// <rdar://problem/12424824>
166+
// Regenerate the synthetic filter if our typename changes. When the (dynamic)
167+
// type of an object changes, so does their synthetic filter of choice.
168168
ConstString new_parent_type_name = m_parent->GetTypeName();
169169
if (new_parent_type_name != m_parent_type_name) {
170170
LLDB_LOGF(log,

0 commit comments

Comments
 (0)