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 d6311ee commit 2151018Copy full SHA for 2151018
lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndexSet.h
@@ -40,7 +40,7 @@ template <typename T> struct IndexSet {
40
41
friend bool operator==(const IndexSet &lhs, const IndexSet &rhs) {
42
return llvm::all_of(Indices(), [&lhs, &rhs](T(IndexSet::*index)) {
43
- return lhs.*index == lhs.*index;
+ return lhs.*index == rhs.*index;
44
});
45
}
46
};
0 commit comments