Skip to content

Commit

Permalink
Merge pull request #86 from ahamez/master
Browse files Browse the repository at this point in the history
Remove useless typename
  • Loading branch information
nlohmann committed Jun 11, 2015
2 parents 2d26d85 + 41e9e00 commit 6d8a4ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/json.hpp.re2c
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 6d8a4ae

Please sign in to comment.