From 2caecf1b3efdbee4e08888a04143421589d6143b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 24 Apr 2017 15:06:12 -0300 Subject: type 'L_Umaxalign' replaced by macro 'LUAI_MAXALIGN', which is also added to the auxlib buffer --- luaconf.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'luaconf.h') diff --git a/luaconf.h b/luaconf.h index 33ff3604..f7ac7160 100644 --- a/luaconf.h +++ b/luaconf.h @@ -1,5 +1,5 @@ /* -** $Id: luaconf.h,v 1.259 2016/12/22 13:08:50 roberto Exp roberto $ +** $Id: luaconf.h,v 1.260 2017/04/19 16:34:35 roberto Exp roberto $ ** Configuration file for Lua ** See Copyright Notice in lua.h */ @@ -761,6 +761,12 @@ #define LUAL_BUFFERSIZE ((int)(0x80 * sizeof(void*) * sizeof(lua_Integer))) #endif +/* +@@ LUAI_MAXALIGN defines fields that, when used in a union, ensure +** "maximum" alignment for the other items in that union. +*/ +#define LUAI_MAXALIGN lua_Number n; double u; void *s; lua_Integer i; long l + /* }================================================================== */ -- cgit v1.2.3-55-g6feb