mirror of
https://github.com/nlohmann/json.git
synced 2025-07-15 07:41:50 +03:00
fix for #166
This commit is contained in:
@ -94,9 +94,9 @@ struct has_mapped_type
|
||||
{
|
||||
private:
|
||||
template<typename C> static char test(typename C::mapped_type*);
|
||||
template<typename C> static int test(...);
|
||||
template<typename C> static char (&test(...))[2];
|
||||
public:
|
||||
enum { value = sizeof(test<T>(0)) == sizeof(char) };
|
||||
static constexpr bool value = sizeof(test<T>(0)) == 1;
|
||||
};
|
||||
|
||||
/// "equality" comparison for floating point numbers
|
||||
|
Reference in New Issue
Block a user