From 5eccbbf15ea7cbe2d7d0d898c179f62e335c3bde Mon Sep 17 00:00:00 2001 From: Alexander McCord Date: Sat, 8 Jun 2024 09:10:20 -0700 Subject: [PATCH] These also needs cstddef. --- EqSat/include/Luau/Id.h | 1 + EqSat/include/Luau/Slice.h | 1 + 2 files changed, 2 insertions(+) diff --git a/EqSat/include/Luau/Id.h b/EqSat/include/Luau/Id.h index 13de424f..c56a6ab6 100644 --- a/EqSat/include/Luau/Id.h +++ b/EqSat/include/Luau/Id.h @@ -1,6 +1,7 @@ // This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details #pragma once +#include #include namespace Luau::EqSat diff --git a/EqSat/include/Luau/Slice.h b/EqSat/include/Luau/Slice.h index 3d3c1b18..886f0c3e 100644 --- a/EqSat/include/Luau/Slice.h +++ b/EqSat/include/Luau/Slice.h @@ -4,6 +4,7 @@ #include "Luau/Common.h" #include +#include namespace Luau::EqSat {