2011-03-20 20:05:19 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/afterstd.h
|
|
|
|
// Purpose: #include after STL headers
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 07/07/03
|
|
|
|
// Copyright: (c) 2003 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/**
|
|
|
|
See the comments in beforestd.h.
|
|
|
|
*/
|
|
|
|
|
2013-09-23 01:44:55 +03:00
|
|
|
#if defined(__WINDOWS__)
|
2011-03-20 20:05:19 +02:00
|
|
|
#include "wx/msw/winundef.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// undo what we did in wx/beforestd.h
|
|
|
|
#if defined(__VISUALC__) && __VISUALC__ <= 1201
|
2016-06-26 08:25:29 +03:00
|
|
|
#pragma warning(pop)
|
2011-03-20 20:05:19 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// see beforestd.h for explanation
|
|
|
|
#if defined(HAVE_VISIBILITY) && defined(HAVE_BROKEN_LIBSTDCXX_VISIBILITY)
|
|
|
|
#pragma GCC visibility pop
|
|
|
|
#endif
|