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 --- lobject.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index 7c521ba2..c8f9adb3 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 2.117 2016/08/01 19:51:24 roberto Exp roberto $ +** $Id: lobject.h,v 2.118 2017/04/11 18:41:09 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -317,7 +317,7 @@ typedef struct TString { ** Ensures that address after this type is always fully aligned. */ typedef union UTString { - L_Umaxalign dummy; /* ensures maximum alignment for strings */ + LUAI_MAXALIGN; /* ensures maximum alignment for strings */ TString tsv; } UTString; @@ -357,7 +357,7 @@ typedef struct Udata { ** Ensures that address after this type is always fully aligned. */ typedef union UUdata { - L_Umaxalign dummy; /* ensures maximum alignment for 'local' udata */ + LUAI_MAXALIGN; /* ensures maximum alignment for 'local' udata */ Udata uv; } UUdata; -- cgit v1.2.3-55-g6feb