Also remove wxList::const_iterator::const_reference typedef

This typedef is redundant with the "reference" one and doesn't seem to
be used anywhere.

As with the previous commit, this one could be reverted later if it
turns out it does break any existing code, but this seems unlikely.
This commit is contained in:
Vadim Zeitlin 2018-02-23 16:03:36 +01:00
parent 9edf06794e
commit 7e0ca8357e

View File

@ -831,7 +831,6 @@ private:
typedef const value_type& reference; \
\
typedef nodetype Node; \
typedef const value_type& const_reference; \
typedef const_iterator itor; \
\
Node* m_node; \
@ -927,7 +926,6 @@ private:
\
typedef nodetype Node; \
typedef const_reverse_iterator itor; \
typedef const value_type& const_reference; \
\
Node* m_node; \
Node* m_init; \