|
@@ -364,6 +364,8 @@ public:
|
|
using Base = IteratorBase<HashTable, iterator>;
|
|
using Base = IteratorBase<HashTable, iterator>;
|
|
|
|
|
|
public:
|
|
public:
|
|
|
|
+ using IteratorBase<HashTable, iterator>::operator ==;
|
|
|
|
+
|
|
/// Properties
|
|
/// Properties
|
|
using reference = typename Base::value_type &;
|
|
using reference = typename Base::value_type &;
|
|
using pointer = typename Base::value_type *;
|
|
using pointer = typename Base::value_type *;
|
|
@@ -401,6 +403,8 @@ public:
|
|
using Base = IteratorBase<const HashTable, const_iterator>;
|
|
using Base = IteratorBase<const HashTable, const_iterator>;
|
|
|
|
|
|
public:
|
|
public:
|
|
|
|
+ using IteratorBase<const HashTable, const_iterator>::operator ==;
|
|
|
|
+
|
|
/// Properties
|
|
/// Properties
|
|
using reference = const typename Base::value_type &;
|
|
using reference = const typename Base::value_type &;
|
|
using pointer = const typename Base::value_type *;
|
|
using pointer = const typename Base::value_type *;
|