Skip to content

Commit

Permalink
styles
Browse files Browse the repository at this point in the history
  • Loading branch information
cwharris committed Oct 2, 2024
1 parent 35c28be commit feb9ceb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cpp/mrc/src/internal/utils/contains.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ template <typename C>
class KeyIterator
{
public:
using iterator_category = std::bidirectional_iterator_tag;
using value_type = C::key_type;
using difference_type = C::difference_type;
using pointer = C::pointer;
using reference = C::reference;
using iterator_category_t = std::bidirectional_iterator_tag;
using value_type = C::key_type;
using difference_type = C::difference_type;
using pointer_t = C::pointer;
using reference_t = C::reference;

KeyIterator() = default;
explicit KeyIterator(typename C::const_iterator it) : m_iter(it) {}
Expand Down

0 comments on commit feb9ceb

Please sign in to comment.