Skip to content

Commit

Permalink
change from #86
Browse files Browse the repository at this point in the history
  • Loading branch information
nlohmann committed Jun 11, 2015
1 parent bab7e96 commit 7f25511
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/json.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2358,7 +2358,7 @@ class basic_json
/// defines a reference to the type iterated over (value_type)
using reference = typename basic_json::reference;
/// the category of the iterator
using iterator_category = typename std::bidirectional_iterator_tag;
using iterator_category = std::bidirectional_iterator_tag;

/// default constructor
inline iterator() = default;
Expand Down Expand Up @@ -2874,7 +2874,7 @@ class basic_json
/// defines a reference to the type iterated over (value_type)
using reference = typename basic_json::const_reference;
/// the category of the iterator
using iterator_category = typename std::bidirectional_iterator_tag;
using iterator_category = std::bidirectional_iterator_tag;

/// default constructor
inline const_iterator() = default;
Expand Down

0 comments on commit 7f25511

Please sign in to comment.