Issue #26139: libmpdec: disable /W4 warning (non-standard dllimport behavior).

This commit is contained in:
Stefan Krah 2016-01-17 12:28:43 +01:00
parent ab061cf2ae
commit 5f6ccc787e
1 changed files with 5 additions and 0 deletions

View File

@ -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;