Formatting.

This commit is contained in:
Alexander McCord 2024-05-24 13:27:03 -07:00
parent 603da12809
commit d13a86be41

View file

@ -1,10 +1,12 @@
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
#include "Luau/EGraph.h"
namespace Luau::EqSat {
namespace Luau::EqSat
{
template<typename L, typename N>
Id EGraph<L, N>::find(Id id) const {
Id EGraph<L, N>::find(Id id) const
{
return unionfind.find(id);
}