We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8abf6a9 + 564b8a7 commit 5e60c0aCopy full SHA for 5e60c0a
lldb/source/Symbol/TypeList.cpp
@@ -92,9 +92,9 @@ void TypeList::ForEach(
92
}
93
94
void TypeList::Dump(Stream *s, bool show_context) {
95
- for (iterator pos = m_types.begin(), end = m_types.end(); pos != end; ++pos) {
96
- pos->get()->Dump(s, show_context);
97
- }
+ for (iterator pos = m_types.begin(), end = m_types.end(); pos != end; ++pos)
+ if (Type *t = pos->get())
+ t->Dump(s, show_context);
98
99
100
void TypeList::RemoveMismatchedTypes(const char *qualified_typename,
0 commit comments