mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 02:10:53 +01:00
use correct variables
This commit is contained in:
parent
59de424f96
commit
9f07cd5e71
1 changed files with 2 additions and 2 deletions
|
@ -48,9 +48,9 @@ void UnionFind::merge(Id a, Id b)
|
|||
|
||||
// Ensure that the rank of set A is greater than the rank of set B
|
||||
if (ranks[size_t(aSet)] < ranks[size_t(bSet)])
|
||||
std::swap(a, b);
|
||||
std::swap(aSet, bSet);
|
||||
|
||||
parents[size_t(b)] = a;
|
||||
parents[size_t(bSet)] = aSet;
|
||||
|
||||
if (ranks[size_t(aSet)] == ranks[size_t(bSet)])
|
||||
ranks[size_t(aSet)]++;
|
||||
|
|
Loading…
Add table
Reference in a new issue