aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-08-18 13:12:18 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-08-18 13:12:18 -0300
commitcaceeab750ed80e94f8ec763248ae04cd90fefb5 (patch)
tree2f5b0e8d457dd29d5525d924e6bd4d2328292d84 /lobject.h
parent3991312b94c0862577a5998fcf9ea93c81c6933c (diff)
downloadlua-caceeab750ed80e94f8ec763248ae04cd90fefb5.tar.gz
lua-caceeab750ed80e94f8ec763248ae04cd90fefb5.tar.bz2
lua-caceeab750ed80e94f8ec763248ae04cd90fefb5.zip
'next' field for tables changed from pointer to integer (for better
alignment on 64-bit machines)
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.h b/lobject.h
index ba425fed..3ab75ad5 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 2.78 2013/05/14 15:59:04 roberto Exp roberto $ 2** $Id: lobject.h,v 2.79 2013/08/07 12:18:11 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*/
@@ -438,7 +438,7 @@ typedef union Closure {
438typedef union TKey { 438typedef union TKey {
439 struct { 439 struct {
440 TValuefields; 440 TValuefields;
441 struct Node *next; /* for chaining */ 441 int next; /* for chaining (offset for next node) */
442 } nk; 442 } nk;
443 TValue tvk; 443 TValue tvk;
444} TKey; 444} TKey;