From b202b3dd6393b415fa68e18dc49c9431dc6b58b2 Mon Sep 17 00:00:00 2001 From: TheCharlatan Date: Wed, 15 Mar 2023 20:02:32 +0100 Subject: [PATCH] Add missing cstddef include in assumptions.h The inclusion of this header should not depend on the inclusion of other headers that include cstddef themselves. --- src/compat/assumptions.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compat/assumptions.h b/src/compat/assumptions.h index 92615b582ab6a..4488db088683a 100644 --- a/src/compat/assumptions.h +++ b/src/compat/assumptions.h @@ -8,6 +8,7 @@ #ifndef BITCOIN_COMPAT_ASSUMPTIONS_H #define BITCOIN_COMPAT_ASSUMPTIONS_H +#include #include // Assumption: We assume that the macro NDEBUG is not defined.