aboutsummaryrefslogtreecommitdiff
path: root/src/compat
diff options
context:
space:
mode:
authorTheCharlatan <seb.kung@gmail.com>2023-03-15 20:02:32 +0100
committerTheCharlatan <seb.kung@gmail.com>2023-03-23 12:52:08 +0100
commitb202b3dd6393b415fa68e18dc49c9431dc6b58b2 (patch)
tree4ecbc8fb412b6a5f79c466d8d49a3267936b0956 /src/compat
parent18fb36367a28819bd5ab402344802796a1248979 (diff)
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.
Diffstat (limited to 'src/compat')
-rw-r--r--src/compat/assumptions.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compat/assumptions.h b/src/compat/assumptions.h
index 92615b582a..4488db0886 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 <cstddef>
#include <limits>
// Assumption: We assume that the macro NDEBUG is not defined.