Change iterator category to random access
This commit is contained in:
parent
daea213b44
commit
c4ab8f827e
1 changed files with 1 additions and 1 deletions
|
@ -8015,7 +8015,7 @@ class basic_json
|
||||||
typename basic_json::const_reference,
|
typename basic_json::const_reference,
|
||||||
typename basic_json::reference>::type;
|
typename basic_json::reference>::type;
|
||||||
/// the category of the iterator
|
/// the category of the iterator
|
||||||
using iterator_category = std::bidirectional_iterator_tag;
|
using iterator_category = std::random_access_iterator_tag;
|
||||||
|
|
||||||
/// default constructor
|
/// default constructor
|
||||||
iter_impl() = default;
|
iter_impl() = default;
|
||||||
|
|
Loading…
Reference in a new issue