Commit 064a9c92 by gatopeich

Fix regression test

parent ddf0a45a
......@@ -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
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment