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.
This commit is contained in:
TheCharlatan 2023-03-15 20:02:32 +01:00
parent 18fb36367a
commit b202b3dd63
No known key found for this signature in database
GPG Key ID: 9B79B45691DB4173

View File

@ -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.