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 3c1a09d commit 36c78ecCopy full SHA for 36c78ec
llvm/lib/DebugInfo/LogicalView/Core/LVScope.cpp
@@ -263,7 +263,7 @@ bool LVScope::removeElement(LVElement *Element) {
263
return Item == Element;
264
};
265
auto RemoveElement = [Element, Predicate](auto &Container) -> bool {
266
- auto Iter = std::remove_if(Container->begin(), Container->end(), Predicate);
+ auto Iter = llvm::remove_if(*Container, Predicate);
267
if (Iter != Container->end()) {
268
Container->erase(Iter, Container->end());
269
Element->resetParent();
0 commit comments