Avoid warnings from VC++ 5.0
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40624 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -77,6 +77,12 @@
|
||||
/* is buggy, and occurs for code that does actually get executed */
|
||||
# if !defined __WXDEBUG__ && __VISUALC__ <= 1100
|
||||
# pragma warning(disable:4702) /* unreachable code */
|
||||
# endif
|
||||
/* The VC++ 5.0 warning 'C4003: not enough actual parameters for macro'
|
||||
* is incompatible with the wxWidgets headers since it is given when
|
||||
* parameters are empty but not missing. */
|
||||
# if __VISUALC__ <= 1100
|
||||
# pragma warning(disable:4003) /* not enough actual parameters for macro */
|
||||
# endif
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user