remove asserts

Co-authored-by: Alexander McCord <11488393+alexmccord@users.noreply.github.com>
This commit is contained in:
birds3345 2024-07-17 13:37:49 -04:00 committed by GitHub
parent 06c99b75de
commit 59de424f96
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -41,9 +41,6 @@ Id UnionFind::find(Id id)
void UnionFind::merge(Id a, Id b)
{
LUAU_ASSERT(size_t(a) < parents.size());
LUAU_ASSERT(size_t(b) < parents.size());
Id aSet = find(a);
Id bSet = find(b);
if (aSet == bSet)