Skip to content

Commit

Permalink
fix asan error
Browse files Browse the repository at this point in the history
  • Loading branch information
ezhulenev committed Sep 1, 2023
1 parent ebc4537 commit 3036110
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class ValueAliasingSet {
aliasers = valueAliasSets[it->second];
}
return llvm::make_filter_range(
aliasers, [&](Value aliaser) { return aliaser != value; });
aliasers, [=](Value aliaser) { return aliaser != value; });
}

private:
Expand Down

0 comments on commit 3036110

Please sign in to comment.