From a17915dbfb745bb3fc842f220dadead95bce95a6 Mon Sep 17 00:00:00 2001 From: Sara Date: Thu, 11 Jan 2024 23:28:21 +0100 Subject: [PATCH] fix: drop.h now correctly includes typeclass_helpers.h --- core/src/drop.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/drop.h b/core/src/drop.h index c5a9936..894b62d 100644 --- a/core/src/drop.h +++ b/core/src/drop.h @@ -1,6 +1,8 @@ #ifndef _fencer_drop_h #define _fencer_drop_h +#include "typeclass_helpers.h" + typedef struct { void (*const drop)(void* self); } IDrop;