Merge pull request #163 from igaztanaga/patch-1

Fix -Wconversion warning for GCC / 64 bits
This commit is contained in:
jzmaddock
2022-02-10 13:10:42 +00:00
committed by GitHub

View File

@ -15,6 +15,7 @@
#include <boost/type_traits/is_function.hpp>
#include <boost/type_traits/detail/yes_no_type.hpp>
#include <boost/config/workaround.hpp>
#include <cstddef>
/*
* CAUTION:
@ -40,7 +41,7 @@ namespace boost {
namespace detail{
template <unsigned N>
template <std::size_t N>
struct ok_tag { double d; char c[N]; };
template <class T>