Avoid warnings in the DLL builds

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28573 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2004-07-31 21:05:38 +00:00
parent f16ab95d53
commit e1688485fd

View File

@ -143,8 +143,8 @@ public: \
value_type m_value; \
}; \
\
struct Iterator; \
friend struct Iterator; \
CLASSEXP Iterator; \
friend CLASSEXP Iterator; \
protected: \
static void DeleteNode( _wxHashTable_NodeBase* node ) \
{ \
@ -154,8 +154,9 @@ public: \
/* */ \
/* forward iterator */ \
/* */ \
struct Iterator \
CLASSEXP Iterator \
{ \
public: \
Node* m_node; \
Self* m_ht; \
\
@ -186,8 +187,9 @@ public: \
}; \
\
public: \
struct iterator:public Iterator \
CLASSEXP iterator : public Iterator \
{ \
public: \
iterator() : Iterator() {} \
iterator( Node* node, Self* ht ) : Iterator( node, ht ) {} \
iterator& operator++() { PlusPlus(); return *this; } \
@ -196,8 +198,9 @@ public: \
pointer operator ->() const { return &(m_node->m_value); } \
}; \
\
struct const_iterator:public Iterator \
CLASSEXP const_iterator : public Iterator \
{ \
public: \
const_iterator() : Iterator() {} \
const_iterator( Node* node, const Self* ht ) \
: Iterator( node, (Self*)ht ) {} \