mdbx: disable warning C4204 for MSVC.

Change-Id: Idf7246f5ee349294cea1ed15d69daa49e4dddedb
This commit is contained in:
Leonid Yuriev 2020-07-30 14:57:40 +03:00
parent 7ce33be933
commit 135bead730

View File

@ -88,6 +88,7 @@
#pragma warning(disable : 4548) /* expression before comma has no effect; expected expression with side - effect */
#pragma warning(disable : 4366) /* the result of the unary '&' operator may be unaligned */
#pragma warning(disable : 4200) /* nonstandard extension used: zero-sized array in struct/union */
#pragma warning(disable : 4204) /* nonstandard extension used: non-constant aggregate initializer */
#endif /* _MSC_VER (warnings) */
#if defined(MDBX_TOOLS)