]> git.saurik.com Git - wxWidgets.git/blame - include/wx/afterstd.h
warnings (and some errors) fixes for wxUniv DLL build
[wxWidgets.git] / include / wx / afterstd.h
CommitLineData
df5168c4
MB
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
335991af
MB
16#if defined(__WXMSW__) && defined(__MINGW32__)
17 #include "wx/msw/winundef.h"
18#endif
df5168c4 19#ifdef _MSC_VER
e5898961
MB
20 // MSVC 5 does not have this
21 #if _MSC_VER > 1100
22 #pragma warning(pop)
23 #else
24 // 'expression' : signed/unsigned mismatch
25 #pragma warning(default:4018)
26
27 // 'conversion' : conversion from 'type1' to 'type2',
28 // possible loss of data
29 #pragma warning(default:4244)
30
31 // C++ language change: to explicitly specialize class template
32 // 'identifier' use the following syntax
33 #pragma warning(default:4663)
34 #endif
df5168c4
MB
35#endif
36