From e13e166620b706992bceea14f0404350304262a1 Mon Sep 17 00:00:00 2001 From: nhmall Date: Fri, 29 Nov 2019 17:40:58 -0500 Subject: [PATCH] get rid of LUA_INTCAST defines --- include/system.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/system.h b/include/system.h index 60437f0bc..3906e68e4 100644 --- a/include/system.h +++ b/include/system.h @@ -571,12 +571,6 @@ E int FDECL(atoi, (const char *)); #if !defined(CROSSCOMPILE) || defined(CROSSCOMPILE_TARGET) #include "nhlua.h" - -#if defined(WIN32) -#define LUA_INTCAST(i) ((int) i) -#else -#define LUA_INTCAST(i) (i) #endif -#endif /* !CROSSCOMPILE || CROSSCOMPILE_TARGET */ #endif /* SYSTEM_H */