From 803b983da770fbb5e52bb06b97ff88479af621bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Wed, 13 Oct 2021 15:10:36 +0200 Subject: [PATCH] Small fix for Wsign-conversion --- include/boost/static_assert.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boost/static_assert.hpp b/include/boost/static_assert.hpp index 0c9c5a5..d94ca80 100644 --- a/include/boost/static_assert.hpp +++ b/include/boost/static_assert.hpp @@ -16,6 +16,7 @@ #include #include +#include //for std::size_t #if defined(__GNUC__) && !defined(__GXX_EXPERIMENTAL_CXX0X__) // @@ -81,7 +82,7 @@ template struct STATIC_ASSERTION_FAILURE; template <> struct STATIC_ASSERTION_FAILURE { enum { value = 1 }; }; // HP aCC cannot deal with missing names for template value parameters -template struct static_assert_test{}; +template struct static_assert_test{}; }