]> git.saurik.com Git - wxWidgets.git/blob - include/wx/afterstd.h
make this along the vc 7.1 exception as beforestd
[wxWidgets.git] / include / wx / afterstd.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: include/wx/afterstd.h
3 // Purpose: #include after STL headers
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 07/07/03
7 // RCS-ID: $Id$
8 // Copyright: (c) 2003 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 /**
13 See the comments in beforestd.h.
14 */
15
16 #if defined(__WXMSW__) && defined(__MINGW32__)
17 #include "wx/msw/winundef.h"
18 #endif
19 // VC 7.x isn't as bad as VC6 and doesn't give these warnings
20 #if defined(__VISUALC__) && __VISUALC__ <= 1200
21 // MSVC 5 does not have this
22 #if _MSC_VER > 1100
23 #pragma warning(pop)
24 #else
25 // 'expression' : signed/unsigned mismatch
26 #pragma warning(default:4018)
27
28 // 'conversion' : conversion from 'type1' to 'type2',
29 // possible loss of data
30 #pragma warning(default:4244)
31
32 // C++ language change: to explicitly specialize class template
33 // 'identifier' use the following syntax
34 #pragma warning(default:4663)
35 #endif
36 #endif
37