From d13a86be4145c878583a887f0def6aa1788fd651 Mon Sep 17 00:00:00 2001 From: Alexander McCord Date: Fri, 24 May 2024 13:27:03 -0700 Subject: [PATCH] Formatting. --- EqSat/src/EGraph.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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); }