Skip to content

Commit

Permalink
#1974: remove std::iterator base class
Browse files Browse the repository at this point in the history
  • Loading branch information
nmm0 committed Sep 27, 2022
1 parent c438697 commit 7ed585e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/vt/termination/interval/integral_set.h
Original file line number Diff line number Diff line change
Expand Up @@ -378,9 +378,7 @@ struct IntegralSetBase {
// using reference = DomainT&;

template <typename Impl>
struct IntervalSetIter :
std::iterator<std::bidirectional_iterator_tag, DomainT, DomainT>
{
struct IntervalSetIter {
using Iter = IntervalSetIter;
using iterator_category = std::bidirectional_iterator_tag;
using difference_type = DomainT;
Expand Down

0 comments on commit 7ed585e

Please sign in to comment.