Deprecate TableVal::Intersect(), replace with Intersection()

This commit is contained in:
Jon Siwek 2020-05-20 15:13:55 -07:00
parent 7e89c8f0df
commit e5f66cd2e6
3 changed files with 17 additions and 9 deletions

View file

@ -744,7 +744,7 @@ IntrusivePtr<Val> BinaryExpr::SetFold(Val* v1, Val* v2) const
switch ( tag ) {
case EXPR_AND:
return {AdoptRef{}, tv1->Intersect(tv2)};
return tv1->Intersection(*tv2);
case EXPR_OR:
{