]> git.saurik.com Git - wxWidgets.git/blame - include/wx/afterstd.h
wxDialogBase only has one ctor, so just do initialization in ctor instead of Init()
[wxWidgets.git] / include / wx / afterstd.h
CommitLineData
df5168c4 1///////////////////////////////////////////////////////////////////////////////
233f5738 2// Name: wx/afterstd.h
df5168c4
MB
3// Purpose: #include after STL headers
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 07/07/03
df5168c4 7// Copyright: (c) 2003 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
65571936 8// Licence: wxWindows licence
df5168c4
MB
9///////////////////////////////////////////////////////////////////////////////
10
11/**
12 See the comments in beforestd.h.
13 */
14
fa3f1180 15#if defined(__WINDOWS__)
335991af
MB
16 #include "wx/msw/winundef.h"
17#endif
ffbc1990
VZ
18
19// undo what we did in wx/beforestd.h
20#if defined(__VISUALC__) && __VISUALC__ <= 1201
e5898961
MB
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
0545fc01
VZ
28 // 'identifier' : unreferenced formal parameter
29 #pragma warning(default:4100)
30
e5898961
MB
31 // 'conversion' : conversion from 'type1' to 'type2',
32 // possible loss of data
33 #pragma warning(default:4244)
34
35 // C++ language change: to explicitly specialize class template
36 // 'identifier' use the following syntax
37 #pragma warning(default:4663)
38 #endif
df5168c4
MB
39#endif
40
d6f513f8
VS
41// see beforestd.h for explanation
42#if defined(HAVE_VISIBILITY) && defined(HAVE_BROKEN_LIBSTDCXX_VISIBILITY)
43 #pragma GCC visibility pop
44#endif