]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/afterstd.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: include/wx/afterstd.h
3 // Purpose: #include after STL headers
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2003 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
13 See the comments in beforestd.h.
16 #if defined(__WXMSW__) && defined(__MINGW32__)
17 #include "wx/msw/winundef.h"
20 // MSVC 5 does not have this
24 // 'expression' : signed/unsigned mismatch
25 #pragma warning(default:4018)
27 // 'conversion' : conversion from 'type1' to 'type2',
28 // possible loss of data
29 #pragma warning(default:4244)
31 // C++ language change: to explicitly specialize class template
32 // 'identifier' use the following syntax
33 #pragma warning(default:4663)