don't use invalid/uninitialized iterator in wxList::compatibility_iterator in wxUSE_STL==1 case, this doesn't work with the debug version of glibc STL

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38893 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-04-24 17:59:10 +00:00
parent bc5a523959
commit 7d13fbc6dc
2 changed files with 21 additions and 10 deletions

View File

@@ -11,14 +11,15 @@
#if wxUSE_STL
#undef WX_DEFINE_LIST
#define WX_DEFINE_LIST(name) \
void _WX_LIST_HELPER_##name::DeleteFunction( _WX_LIST_ITEM_TYPE_##name X ) \
{ \
delete X; \
}
#undef WX_DEFINE_LIST
#define WX_DEFINE_LIST(name) \
void _WX_LIST_HELPER_##name::DeleteFunction( _WX_LIST_ITEM_TYPE_##name X )\
{ \
delete X; \
} \
name::BaseListType name::EmptyList;
#else // if !wxUSE_STL
#else // !wxUSE_STL
#define _DEFINE_LIST(T, name) \
void wx##name##Node::DeleteData() \
@@ -34,5 +35,5 @@
// don't pollute preprocessor's name space
//#undef _DEFINE_LIST
#endif
#endif // wxUSE_STL/!wxUSE_STL