Avoid -Wconversion warning in is_complete

This commit is contained in:
Peter Dimov
2022-02-10 05:12:12 +02:00
parent b265ce8f3a
commit d2db69649f

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>