From a660ddd9fdd502736b9db5eab4c29926914368aa Mon Sep 17 00:00:00 2001 From: Nikita Kniazev Date: Fri, 13 Mar 2020 23:53:09 +0300 Subject: [PATCH] Missing `cstddef` include --- include/boost/typeof/int_encoding.hpp | 1 + include/boost/typeof/typeof_impl.hpp | 1 + 2 files changed, 2 insertions(+) diff --git a/include/boost/typeof/int_encoding.hpp b/include/boost/typeof/int_encoding.hpp index 3984174..1f00d4f 100644 --- a/include/boost/typeof/int_encoding.hpp +++ b/include/boost/typeof/int_encoding.hpp @@ -7,6 +7,7 @@ #include #include +#include // for std::size_t namespace boost { namespace type_of { diff --git a/include/boost/typeof/typeof_impl.hpp b/include/boost/typeof/typeof_impl.hpp index f5397e6..73a25df 100644 --- a/include/boost/typeof/typeof_impl.hpp +++ b/include/boost/typeof/typeof_impl.hpp @@ -12,6 +12,7 @@ #include #include #include +#include // for std::size_t #define BOOST_TYPEOF_VECTOR(n) BOOST_PP_CAT(boost::type_of::vector, n)