Blind fix for MSVC.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21778 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -346,8 +346,9 @@ public: \
|
|||||||
\
|
\
|
||||||
class reverse_iterator \
|
class reverse_iterator \
|
||||||
{ \
|
{ \
|
||||||
typedef name::reference reference; \
|
typedef T value_type; \
|
||||||
typedef name::pointer pointer; \
|
typedef value_type& reference; \
|
||||||
|
typedef value_type* pointer; \
|
||||||
typedef reverse_iterator itor; \
|
typedef reverse_iterator itor; \
|
||||||
friend itor operator+(int o, const itor& it); \
|
friend itor operator+(int o, const itor& it); \
|
||||||
friend itor operator+(const itor& it, int o); \
|
friend itor operator+(const itor& it, int o); \
|
||||||
@@ -371,8 +372,9 @@ public: \
|
|||||||
\
|
\
|
||||||
class const_reverse_iterator \
|
class const_reverse_iterator \
|
||||||
{ \
|
{ \
|
||||||
typedef name::const_reference reference; \
|
typedef T value_type; \
|
||||||
typedef name::const_pointer pointer; \
|
typedef const value_type& reference; \
|
||||||
|
typedef const value_type* pointer; \
|
||||||
typedef const_reverse_iterator itor; \
|
typedef const_reverse_iterator itor; \
|
||||||
friend itor operator+(int o, const itor& it); \
|
friend itor operator+(int o, const itor& it); \
|
||||||
friend itor operator+(const itor& it, int o); \
|
friend itor operator+(const itor& it, int o); \
|
||||||
|
Reference in New Issue
Block a user