PHP 8 compatibility Windows

This commit is contained in:
Jan-E
2020-09-22 11:56:59 +02:00
parent 7e5191fb56
commit 5b3771a0b2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef REDIS_ARRAY_H
#define REDIS_ARRAY_H
#ifdef PHP_WIN32
#if (defined(_MSC_VER) && _MSC_VER <= 1920)
#include "win32/php_stdint.h"
#else
#include <stdint.h>
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef REDIS_ARRAY_IMPL_H
#define REDIS_ARRAY_IMPL_H
#ifdef PHP_WIN32
#if (defined(_MSC_VER) && _MSC_VER <= 1920)
#include <win32/php_stdint.h>
#else
#include <stdint.h>