diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-10-22 14:18:28 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-10-22 14:18:28 -0300 |
commit | 84e0b1bc9789148092797fecf303547fef35a875 (patch) | |
tree | 68f96f805a188fc2cbde2bac7b10da33c8c4c77f /lobject.h | |
parent | 6823a2f57f5dfb4365e7cb0c9281fe0d00b0a1e4 (diff) | |
download | lua-84e0b1bc9789148092797fecf303547fef35a875.tar.gz lua-84e0b1bc9789148092797fecf303547fef35a875.tar.bz2 lua-84e0b1bc9789148092797fecf303547fef35a875.zip |
small changes in type configuration facilities
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 */ |