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:
@@ -761,7 +761,6 @@ private:
|
|||||||
\
|
\
|
||||||
classexp iterator \
|
classexp iterator \
|
||||||
{ \
|
{ \
|
||||||
typedef name list; \
|
|
||||||
public: \
|
public: \
|
||||||
typedef nodetype Node; \
|
typedef nodetype Node; \
|
||||||
typedef iterator itor; \
|
typedef iterator itor; \
|
||||||
@@ -811,7 +810,6 @@ private:
|
|||||||
}; \
|
}; \
|
||||||
classexp const_iterator \
|
classexp const_iterator \
|
||||||
{ \
|
{ \
|
||||||
typedef name list; \
|
|
||||||
public: \
|
public: \
|
||||||
typedef nodetype Node; \
|
typedef nodetype Node; \
|
||||||
typedef T* value_type; \
|
typedef T* value_type; \
|
||||||
@@ -864,7 +862,6 @@ private:
|
|||||||
}; \
|
}; \
|
||||||
classexp reverse_iterator \
|
classexp reverse_iterator \
|
||||||
{ \
|
{ \
|
||||||
typedef name list; \
|
|
||||||
public: \
|
public: \
|
||||||
typedef nodetype Node; \
|
typedef nodetype Node; \
|
||||||
typedef T* value_type; \
|
typedef T* value_type; \
|
||||||
@@ -903,7 +900,6 @@ private:
|
|||||||
}; \
|
}; \
|
||||||
classexp const_reverse_iterator \
|
classexp const_reverse_iterator \
|
||||||
{ \
|
{ \
|
||||||
typedef name list; \
|
|
||||||
public: \
|
public: \
|
||||||
typedef nodetype Node; \
|
typedef nodetype Node; \
|
||||||
typedef T* value_type; \
|
typedef T* value_type; \
|
||||||
|
Reference in New Issue
Block a user