mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
This violates ODR. Move implementation to header.
This commit is contained in:
parent
11f72000a9
commit
18726c1ed5
3 changed files with 4 additions and 15 deletions
|
@ -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):
|
||||
//
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
|
@ -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
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue