diff --git a/EqSat/src/EGraph.cpp b/EqSat/src/EGraph.cpp index 4d5194bb..57b25213 100644 --- a/EqSat/src/EGraph.cpp +++ b/EqSat/src/EGraph.cpp @@ -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 -Id EGraph::find(Id id) const { +Id EGraph::find(Id id) const +{ return unionfind.find(id); }