mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 20:11:51 +00:00
28 lines
805 B
C
28 lines
805 B
C
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
// 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.
|
||
|
*/
|
||
|
|
||
|
#if defined(__WINDOWS__)
|
||
|
#include "wx/msw/winundef.h"
|
||
|
#endif
|
||
|
|
||
|
// undo what we did in wx/beforestd.h
|
||
|
#if defined(__VISUALC__) && __VISUALC__ >= 1910
|
||
|
#pragma warning(pop)
|
||
|
#endif // VC++ >= 14.1
|
||
|
|
||
|
// see beforestd.h for explanation
|
||
|
#if defined(HAVE_VISIBILITY) && defined(HAVE_BROKEN_LIBSTDCXX_VISIBILITY)
|
||
|
#pragma GCC visibility pop
|
||
|
#endif
|