summaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-04-24 15:06:12 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-04-24 15:06:12 -0300
commit2caecf1b3efdbee4e08888a04143421589d6143b (patch)
tree5eb37237e2440b1fb0b3750e5917d6d6d80a8be7 /lobject.h
parentf399e6705fab15013ae468049c910577e1a9a5a1 (diff)
downloadlua-github-2caecf1b3efdbee4e08888a04143421589d6143b.tar.gz
type 'L_Umaxalign' replaced by macro 'LUAI_MAXALIGN', which is also added
to the auxlib buffer
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h6
1 files changed, 3 insertions, 3 deletions
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;