Fix regression test

This commit is contained in:
gatopeich 2020-06-22 18:59:19 +01:00
parent ddf0a45abb
commit 064a9c9212
2 changed files with 6 additions and 2 deletions

View file

@ -496,7 +496,9 @@ class basic_json
using object_t = ObjectType<StringType,
basic_json,
object_comparator_t,
AllocatorType<typename ObjectType<StringType, basic_json>::value_type>>;
// Note: instantiating ObjectType with dummy allocator to extract ::value_type
AllocatorType<typename ObjectType<StringType, basic_json, object_comparator_t, AllocatorType<int>
>::value_type>>;
/*!
@brief a type for an array

View file

@ -16348,7 +16348,9 @@ class basic_json
using object_t = ObjectType<StringType,
basic_json,
object_comparator_t,
AllocatorType<typename ObjectType<StringType, basic_json>::value_type>>;
// Note: instantiating ObjectType with dummy allocator to extract ::value_type
AllocatorType<typename ObjectType<StringType, basic_json, object_comparator_t, AllocatorType<int>
>::value_type>>;
/*!
@brief a type for an array