From 7ccad5b9f81f5184511d0f0445e15a8a089feb00 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Thu, 5 Dec 2024 13:36:23 -0500 Subject: [PATCH] darray.h does not depend on internal/bits.h darray.h no longer depends on internal/bits.h, so we can remove it. --- darray.h | 2 -- gc/default/default.c | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/darray.h b/darray.h index 08b53d8cd1..baaf350f56 100644 --- a/darray.h +++ b/darray.h @@ -5,8 +5,6 @@ #include #include -#include "internal/bits.h" - // Type for a dynamic array. Use to declare a dynamic array. // It is a pointer so it fits in st_table nicely. Designed // to be fairly type-safe. diff --git a/gc/default/default.c b/gc/default/default.c index b805df9983..58808162e0 100644 --- a/gc/default/default.c +++ b/gc/default/default.c @@ -15,6 +15,7 @@ # include #endif +#include "internal/bits.h" #include "internal/hash.h" #include "ruby/ruby.h"