X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8bb6b2c057edbcc5b87f00a8af6ac70f6fd69727..d02d8b4c273719771761425453bc6c4a438b364d:/include/wx/defs.h diff --git a/include/wx/defs.h b/include/wx/defs.h index 64fcabb534..d7f1cb4977 100644 --- a/include/wx/defs.h +++ b/include/wx/defs.h @@ -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 /*