1
0
zrcadlo https://github.com/luanti-org/luanti.git synchronizováno 2025-12-12 18:25:26 +01:00

Update Lua BitOp's stdint.h check for MSVC

based on 3ece3a3e3a
Tento commit je obsažen v:
goodusername123
2024-03-19 13:54:57 -05:00
odevzdal GitHub
rodič a862e4290c
revize fa072c1d2c

Zobrazit soubor

@@ -37,8 +37,8 @@ extern "C" {
#include "lauxlib.h"
}
#ifdef _MSC_VER
/* MSVC is stuck in the last century and doesn't have C99's stdint.h. */
#if defined(_MSC_VER) && (_MSC_VER < 1700)
/* Old MSVC is stuck in the last century and doesn't have C99's stdint.h. */
typedef __int32 int32_t;
typedef unsigned __int32 uint32_t;
typedef unsigned __int64 uint64_t;