2011-03-20 18:05:19 +00: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-22 22:44:55 +00:00
|
|
|
#if defined(__WINDOWS__)
|
2011-03-20 18:05:19 +00:00
|
|
|
#include "wx/msw/winundef.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// undo what we did in wx/beforestd.h
|
|
|
|
#if defined(__VISUALC__) && __VISUALC__ <= 1201
|
2016-06-26 05:25:29 +00:00
|
|
|
#pragma warning(pop)
|
2011-03-20 18:05:19 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// see beforestd.h for explanation
|
|
|
|
#if defined(HAVE_VISIBILITY) && defined(HAVE_BROKEN_LIBSTDCXX_VISIBILITY)
|
|
|
|
#pragma GCC visibility pop
|
|
|
|
#endif
|