Disable C4101 warnings entirely on Windows

This commit is contained in:
Kalle Sommer Nielsen 2016-12-08 03:50:31 +01:00
parent aea2035600
commit cf24a61735
2 changed files with 451 additions and 451 deletions

File diff suppressed because it is too large Load diff

View file

@ -2230,7 +2230,7 @@ function gen_vm($def, $skel) {
out($f, "#ifdef ZEND_WIN32\n");
// Suppress free_op1 warnings on Windows
out($f, "# pragma warning(once : 4101)\n");
out($f, "# pragma warning(disable : 4101)\n");
if (ZEND_VM_SPEC) {
// Suppress (<non-zero constant> || <expression>) warnings on windows
out($f, "# pragma warning(once : 6235)\n");