mirror of
https://github.com/nlohmann/json.git
synced 2025-07-16 18:41:53 +03:00
make has_mapped_type struct friendly
This commit is contained in:
@ -112,10 +112,13 @@ template<typename T>
|
|||||||
struct has_mapped_type
|
struct has_mapped_type
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
template<typename C> static char test(typename C::mapped_type*);
|
template <typename U, typename = typename U::mapped_type>
|
||||||
template<typename C> static char (&test(...))[2];
|
static int detect(U&&);
|
||||||
|
|
||||||
|
static void detect(...);
|
||||||
public:
|
public:
|
||||||
static constexpr bool value = sizeof(test<T>(0)) == 1;
|
static constexpr bool value =
|
||||||
|
std::is_integral<decltype(detect(std::declval<T>()))>::value;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
@ -112,10 +112,13 @@ template<typename T>
|
|||||||
struct has_mapped_type
|
struct has_mapped_type
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
template<typename C> static char test(typename C::mapped_type*);
|
template <typename U, typename = typename U::mapped_type>
|
||||||
template<typename C> static char (&test(...))[2];
|
static int detect(U&&);
|
||||||
|
|
||||||
|
static void detect(...);
|
||||||
public:
|
public:
|
||||||
static constexpr bool value = sizeof(test<T>(0)) == 1;
|
static constexpr bool value =
|
||||||
|
std::is_integral<decltype(detect(std::declval<T>()))>::value;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
Reference in New Issue
Block a user