From df67e4d62c67794bb4a168d86e9b86952a426ce8 Mon Sep 17 00:00:00 2001 From: Hunter Goldstein Date: Fri, 8 Nov 2024 11:56:23 -0800 Subject: [PATCH] Add headers missing when compiling with GCC --- EqSat/include/Luau/Id.h | 1 + EqSat/src/UnionFind.cpp | 2 ++ 2 files changed, 3 insertions(+) diff --git a/EqSat/include/Luau/Id.h b/EqSat/include/Luau/Id.h index ff025ba6..7069f23c 100644 --- a/EqSat/include/Luau/Id.h +++ b/EqSat/include/Luau/Id.h @@ -2,6 +2,7 @@ #pragma once #include +#include #include namespace Luau::EqSat diff --git a/EqSat/src/UnionFind.cpp b/EqSat/src/UnionFind.cpp index 08b31152..6a952999 100644 --- a/EqSat/src/UnionFind.cpp +++ b/EqSat/src/UnionFind.cpp @@ -3,6 +3,8 @@ #include "Luau/Common.h" +#include + namespace Luau::EqSat {