Commit 7f255112 authored by Niels's avatar Niels

change from #86

parent bab7e966
...@@ -2358,7 +2358,7 @@ class basic_json ...@@ -2358,7 +2358,7 @@ class basic_json
/// defines a reference to the type iterated over (value_type) /// defines a reference to the type iterated over (value_type)
using reference = typename basic_json::reference; using reference = typename basic_json::reference;
/// the category of the iterator /// the category of the iterator
using iterator_category = typename std::bidirectional_iterator_tag; using iterator_category = std::bidirectional_iterator_tag;
/// default constructor /// default constructor
inline iterator() = default; inline iterator() = default;
...@@ -2874,7 +2874,7 @@ class basic_json ...@@ -2874,7 +2874,7 @@ class basic_json
/// defines a reference to the type iterated over (value_type) /// defines a reference to the type iterated over (value_type)
using reference = typename basic_json::const_reference; using reference = typename basic_json::const_reference;
/// the category of the iterator /// the category of the iterator
using iterator_category = typename std::bidirectional_iterator_tag; using iterator_category = std::bidirectional_iterator_tag;
/// default constructor /// default constructor
inline const_iterator() = default; inline const_iterator() = default;
......
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