Skip to content

Commit

Permalink
Merge pull request #1710 from MitraDarja/fix/kmer_hash_it
Browse files Browse the repository at this point in the history
[FIX] Iterator Tag in kmer_hash
  • Loading branch information
smehringer authored Apr 6, 2020
2 parents 97d7646 + 8c40faa commit e7d8954
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/seqan3/range/views/kmer_hash.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ class kmer_hash_view<urng_t>::shape_iterator
//!\brief Reference to `value_type`.
using reference = value_type;
//!\brief Tag this class as input iterator.
using iterator_category = std::input_iterator_tag;
using iterator_category = typename std::iterator_traits<it_t>::iterator_category;
//!\brief Tag this class depending on which concept `it_t` models.
using iterator_concept = std::conditional_t<std::contiguous_iterator<it_t>,
typename std::random_access_iterator_tag,
Expand Down

0 comments on commit e7d8954

Please sign in to comment.