mirror of https://github.com/python/cpython.git
Issue #26139: libmpdec: disable /W4 warning (non-standard dllimport behavior).
This commit is contained in:
parent
ab061cf2ae
commit
5f6ccc787e
|
@ -33,6 +33,11 @@
|
|||
#include "memory.h"
|
||||
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#pragma warning(disable : 4232)
|
||||
#endif
|
||||
|
||||
|
||||
/* Guaranteed minimum allocation for a coefficient. May be changed once
|
||||
at program start using mpd_setminalloc(). */
|
||||
mpd_ssize_t MPD_MINALLOC = MPD_MINALLOC_MIN;
|
||||
|
|
Loading…
Reference in New Issue