Revert all wxNOEXCEPT-related changes.
This reverts r72978, 72984, 72989 and 72992. Do not use wxNOEXCEPT for wxTextCtrl dtor as this breaks compilation of any user-defined classes inheriting from it unless they use wxNOEXCEPT as well and the benefits (fixing a harmless warning for the niche ICC compiler) are just not worth the compatibility breakage. See #14826. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72993 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -3335,17 +3335,6 @@ typedef const void* WXWidget;
|
||||
#define DECLARE_NO_ASSIGN_CLASS(classname) \
|
||||
wxDECLARE_NO_ASSIGN_CLASS(classname);
|
||||
|
||||
/* Macro that can be used to indicate that a function doesn't throw. */
|
||||
#if defined(__cplusplus) && __cplusplus >= 199711L /* C++98 */
|
||||
# if __cplusplus >= 201103L /* >= C++11 */
|
||||
# define wxNOEXCEPT noexcept
|
||||
# else
|
||||
# define wxNOEXCEPT throw()
|
||||
# endif
|
||||
#else
|
||||
# define wxNOEXCEPT
|
||||
#endif
|
||||
|
||||
/* --------------------------------------------------------------------------- */
|
||||
/* If a manifest is being automatically generated, add common controls 6 to it */
|
||||
/* --------------------------------------------------------------------------- */
|
||||
|
Reference in New Issue
Block a user