forked from boostorg/type_traits
Merge pull request #163 from igaztanaga/patch-1
Fix -Wconversion warning for GCC / 64 bits
This commit is contained in:
@ -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>
|
||||
|
Reference in New Issue
Block a user