Roll-back to hard-coded object_t::value_type
This commit is contained in:
parent
fb8c11f25c
commit
5e7bdf1cab
2 changed files with 4 additions and 12 deletions
|
@ -496,12 +496,8 @@ class basic_json
|
||||||
using object_t = ObjectType<StringType,
|
using object_t = ObjectType<StringType,
|
||||||
basic_json,
|
basic_json,
|
||||||
object_comparator_t,
|
object_comparator_t,
|
||||||
// Note the use of std::map default allocator as a placeholder
|
// Note: this forces object_t::value_type to match std::map's
|
||||||
// to extract the actual ObjectType::value_type
|
AllocatorType<std::pair<const StringType, basic_json>>>;
|
||||||
AllocatorType<typename
|
|
||||||
ObjectType<StringType, basic_json, object_comparator_t,
|
|
||||||
std::allocator<std::pair<const StringType, basic_json>>
|
|
||||||
>::value_type>>;
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
@brief a type for an array
|
@brief a type for an array
|
||||||
|
|
|
@ -16355,12 +16355,8 @@ class basic_json
|
||||||
using object_t = ObjectType<StringType,
|
using object_t = ObjectType<StringType,
|
||||||
basic_json,
|
basic_json,
|
||||||
object_comparator_t,
|
object_comparator_t,
|
||||||
// Note the use of std::map default allocator as a placeholder
|
// Note: this forces object_t::value_type to match std::map's
|
||||||
// to extract the actual ObjectType::value_type
|
AllocatorType<std::pair<const StringType, basic_json>>>;
|
||||||
AllocatorType<typename
|
|
||||||
ObjectType<StringType, basic_json, object_comparator_t,
|
|
||||||
std::allocator<std::pair<const StringType, basic_json>>
|
|
||||||
>::value_type>>;
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
@brief a type for an array
|
@brief a type for an array
|
||||||
|
|
Loading…
Reference in a new issue