mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
Disable warnings for extras/getopt.
- This isn't our code so we don't care about these warnings.
This commit is contained in:
parent
7239b59e94
commit
69ac9176a5
|
@ -31,6 +31,11 @@
|
|||
# include <config.h>
|
||||
#endif
|
||||
|
||||
/* Don't show warnings about unusued parameters or old style decl. */
|
||||
#ifdef _MSC_VER
|
||||
# pragma warning(disable : 4100 4131)
|
||||
#endif
|
||||
|
||||
#if !defined __STDC__ || !__STDC__
|
||||
/* This is a separate conditional since some stdc systems
|
||||
reject `defined (const)'. */
|
||||
|
|
Loading…
Reference in a new issue