mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 18:30:54 +01:00
fix mistake
This commit is contained in:
parent
aef6dd715b
commit
9b401ae1d6
1 changed files with 2 additions and 1 deletions
|
@ -37,8 +37,9 @@ Id UnionFind::find(Id id)
|
|||
{
|
||||
// Note: we don't update the ranks here since a rank
|
||||
// represents the upper bound on the maximum depth of a tree
|
||||
Id parent = parents[size_t(id)];
|
||||
parents[size_t(id)] = set;
|
||||
id = parents[size_t(id)];
|
||||
id = parent;
|
||||
}
|
||||
|
||||
return set;
|
||||
|
|
Loading…
Add table
Reference in a new issue