335991afa5
Fix WX_DEFINE_TYPEARRAY assert to refer to base array's elemnt type rather than to void*. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21935 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
23 lines
621 B
C
23 lines
621 B
C
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: include/wx/afterstd.h
|
|
// Purpose: #include after STL headers
|
|
// Author: Vadim Zeitlin
|
|
// Modified by:
|
|
// Created: 07/07/03
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) 2003 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
/**
|
|
See the comments in beforestd.h.
|
|
*/
|
|
|
|
#if defined(__WXMSW__) && defined(__MINGW32__)
|
|
#include "wx/msw/winundef.h"
|
|
#endif
|
|
#ifdef _MSC_VER
|
|
# pragma warning(pop)
|
|
#endif
|
|
|