8c7d31e615
Don't compare __VISUALC__ with versions 1200 (VC6) and earlier, such tests are always true or always false now that we don't support VC6 any more, so just remove them simplifying the code. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76548 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
28 lines
789 B
C
28 lines
789 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__ <= 1201
|
|
#pragma warning(pop)
|
|
#endif
|
|
|
|
// see beforestd.h for explanation
|
|
#if defined(HAVE_VISIBILITY) && defined(HAVE_BROKEN_LIBSTDCXX_VISIBILITY)
|
|
#pragma GCC visibility pop
|
|
#endif
|