diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.147 2002/10/08 18:46:08 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.148 2002/10/16 20:40:58 roberto Exp roberto $ |
3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -140,7 +140,7 @@ typedef TObject *StkId; /* index to stack elements */ | |||
140 | ** String headers for string table | 140 | ** String headers for string table |
141 | */ | 141 | */ |
142 | typedef union TString { | 142 | typedef union TString { |
143 | union L_Umaxalign dummy; /* ensures maximum alignment for strings */ | 143 | L_Umaxalign dummy; /* ensures maximum alignment for strings */ |
144 | struct { | 144 | struct { |
145 | union GCObject *next; /* pointer to next object */ | 145 | union GCObject *next; /* pointer to next object */ |
146 | lu_byte tt; /* object type */ | 146 | lu_byte tt; /* object type */ |
@@ -158,7 +158,7 @@ typedef union TString { | |||
158 | 158 | ||
159 | 159 | ||
160 | typedef union Udata { | 160 | typedef union Udata { |
161 | union L_Umaxalign dummy; /* ensures maximum alignment for `local' udata */ | 161 | L_Umaxalign dummy; /* ensures maximum alignment for `local' udata */ |
162 | struct { | 162 | struct { |
163 | union GCObject *next; /* pointer to next object */ | 163 | union GCObject *next; /* pointer to next object */ |
164 | lu_byte tt; /* object type */ | 164 | lu_byte tt; /* object type */ |