Skip to content

Commit

Permalink
Remove unnecessary "list" typedef from wxList iterators
Browse files Browse the repository at this point in the history
This typedef was simply never used and, as it was private, removing it
shouldn't result in any compatibility problems.
  • Loading branch information
vadz committed Feb 23, 2018
1 parent 3d427a1 commit 0d5378f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions include/wx/list.h
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,6 @@ friend class wxHashTableBase; // should be able to call untyped Find()
\
classexp iterator \
{ \
typedef name list; \
public: \
typedef nodetype Node; \
typedef iterator itor; \
Expand Down Expand Up @@ -811,7 +810,6 @@ friend class wxHashTableBase; // should be able to call untyped Find()
}; \
classexp const_iterator \
{ \
typedef name list; \
public: \
typedef nodetype Node; \
typedef T* value_type; \
Expand Down Expand Up @@ -864,7 +862,6 @@ friend class wxHashTableBase; // should be able to call untyped Find()
}; \
classexp reverse_iterator \
{ \
typedef name list; \
public: \
typedef nodetype Node; \
typedef T* value_type; \
Expand Down Expand Up @@ -903,7 +900,6 @@ friend class wxHashTableBase; // should be able to call untyped Find()
}; \
classexp const_reverse_iterator \
{ \
typedef name list; \
public: \
typedef nodetype Node; \
typedef T* value_type; \
Expand Down

0 comments on commit 0d5378f

Please sign in to comment.