8000 Merge pull request #1851 from Jan-E/php8_vs2019 · ebogdanov/phpredis@a09b65b · GitHub
[go: up one dir, main page]

Skip to content

Commit a09b65b

Browse files
authored
Merge pull request phpredis#1851 from Jan-E/php8_vs2019
2 parents 32564e5 + 5b3771a commit a09b65b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

redis_array.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef REDIS_ARRAY_H
22
#define REDIS_ARRAY_H
33

4-
#ifdef PHP_WIN32
4+
#if (defined(_MSC_VER) && _MSC_VER <= 1920)
55
#include "win32/php_stdint.h"
66
#else
77
#include <stdint.h>

redis_array_impl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef REDIS_ARRAY_IMPL_H
22
#define REDIS_ARRAY_IMPL_H
33

4-
#ifdef PHP_WIN32
4+
#if (defined(_MSC_VER) && _MSC_VER <= 1920)
55
#include <win32/php_stdint.h>
66
#else
77
#include <stdint.h>

0 commit comments

Comments
 (0)
0