Update empty() call with namespace to clear ambiguity.

This commit is contained in:
Alina Sbirlea 2020-04-09 18:37:13 -07:00
parent 27f1895f53
commit 5da1671bf8
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ struct SemiNCAInfo {
assert(N && "N must be a valid node");
GraphDiffT EmptyGD;
auto &GD = BUI ? BUI->PreViewCFG : EmptyGD;
return !empty(children<GraphDiffNodePair>({&GD, N}));
return !llvm::empty(children<GraphDiffNodePair>({&GD, N}));
}
static NodePtr GetEntryNode(const DomTreeT &DT) {