Remove unnecessary "list" typedef from wxList iterators

This typedef was simply never used and, as it was private, removing it
shouldn't result in any compatibility problems.
This commit is contained in:
Vadim Zeitlin
2018-02-23 14:21:05 +01:00
parent 3d427a1af1
commit 0d5378fb84

View File

@@ -761,7 +761,6 @@ private:
\
classexp iterator \
{ \
typedef name list; \
public: \
typedef nodetype Node; \
typedef iterator itor; \
@@ -811,7 +810,6 @@ private:
}; \
classexp const_iterator \
{ \
typedef name list; \
public: \
typedef nodetype Node; \
typedef T* value_type; \
@@ -864,7 +862,6 @@ private:
}; \
classexp reverse_iterator \
{ \
typedef name list; \
public: \
typedef nodetype Node; \
typedef T* value_type; \
@@ -903,7 +900,6 @@ private:
}; \
classexp const_reverse_iterator \
{ \
typedef name list; \
public: \
typedef nodetype Node; \
typedef T* value_type; \