This violates ODR. Move implementation to header.

This commit is contained in:
Alexander McCord 2024-05-26 12:06:24 -07:00
parent 11f72000a9
commit 18726c1ed5
3 changed files with 4 additions and 15 deletions

View file

@ -34,7 +34,10 @@ struct EGraph final
// TODO: static_assert L <: Language
// TODO: static_assert N <: Analysis<L>
Id find(Id id) const;
Id find(Id id) const
{
return unionfind.find(id);
}
// Per the egg paper, definition 2.2 (Canonicalization):
//

View file

@ -1,13 +0,0 @@
// 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
{
template<typename L, typename N>
Id EGraph<L, N>::find(Id id) const
{
return unionfind.find(id);
}
}

View file

@ -302,7 +302,6 @@ target_sources(Luau.EqSat PRIVATE
EqSat/include/Luau/Language.h
EqSat/include/Luau/UnionFind.h
EqSat/src/EGraph.cpp
EqSat/src/Id.cpp
EqSat/src/UnionFind.cpp
)