]>
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__)
17 #include "wx/msw/winundef.h"
20 // undo what we did in wx/beforestd.h
21 #if defined(__VISUALC__) && __VISUALC__ <= 1201
22 // MSVC 5 does not have this
24 // don't restore this one for VC6, it gives it in each try/catch which is a
25 // bit annoying to say the least
26 #if _MSC_VER >= 0x1300
28 #pragma warning(default:4702)
33 // 'expression' : signed/unsigned mismatch
34 #pragma warning(default:4018)
36 // 'identifier' : unreferenced formal parameter
37 #pragma warning(default:4100)
39 // 'conversion' : conversion from 'type1' to 'type2',
40 // possible loss of data
41 #pragma warning(default:4244)
43 // C++ language change: to explicitly specialize class template
44 // 'identifier' use the following syntax
45 #pragma warning(default:4663)