join should be const.

This commit is contained in:
Alexander McCord 2024-06-01 20:37:50 -07:00
parent 2ef0ccd5e8
commit c7adc18911
2 changed files with 2 additions and 2 deletions

View file

@ -39,7 +39,7 @@ struct Analysis final
return tableMake[enode.index()](analysis, egraph, enode);
}
void join(D& a, const D& b)
void join(D& a, const D& b) const
{
return analysis.join(a, b);
}

View file

@ -81,7 +81,7 @@ struct ConstantFold
return std::nullopt;
}
void join(Data& a, const Data& b)
void join(Data& a, const Data& b) const
{
if (!a && b)
a = b;