mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
join
should be const.
This commit is contained in:
parent
2ef0ccd5e8
commit
c7adc18911
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue