fix error 2061
This commit is contained in:
parent
3cbed16412
commit
09fdd51f5b
|
|
@ -250,7 +250,7 @@ public:
|
||||||
{
|
{
|
||||||
using iterator_category = std::bidirectional_iterator_tag;
|
using iterator_category = std::bidirectional_iterator_tag;
|
||||||
using pointer = _PTy;
|
using pointer = _PTy;
|
||||||
using reference = IntrusiveList::reference;
|
using reference = typename IntrusiveList::reference;
|
||||||
using difference_type = ptrdiff_t;
|
using difference_type = ptrdiff_t;
|
||||||
|
|
||||||
inline Iterator(pointer ptr = nullptr, bool is_end = false)
|
inline Iterator(pointer ptr = nullptr, bool is_end = false)
|
||||||
|
|
@ -328,8 +328,9 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool is_end_;
|
bool is_end_;
|
||||||
IntrusiveList::pointer base_;
|
|
||||||
|
typename IntrusiveList::pointer base_;
|
||||||
};
|
};
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue