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.
1 parent 4e175b8 commit a37e475Copy full SHA for a37e475
lldb/include/lldb/Core/FormatEntity.h
@@ -190,12 +190,6 @@ struct Entry {
190
return false;
191
if (printf_format != rhs.printf_format)
192
193
- const size_t n = children.size();
194
- const size_t m = rhs.children.size();
195
- for (size_t i = 0; i < std::min<size_t>(n, m); ++i) {
196
- if (!(children[i] == rhs.children[i]))
197
- return false;
198
- }
199
if (children != rhs.children)
200
201
if (type != rhs.type)
0 commit comments