mirror of https://github.com/rusefi/lua.git
detail
This commit is contained in:
parent
10e48b9160
commit
087df82a61
4
ltable.c
4
ltable.c
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: ltable.c,v 2.6 2004/09/27 18:54:45 roberto Exp roberto $
|
** $Id: ltable.c,v 2.7 2004/10/06 18:34:16 roberto Exp roberto $
|
||||||
** Lua tables (hash)
|
** Lua tables (hash)
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -38,7 +38,7 @@
|
||||||
** max size of array part is 2^MAXBITS
|
** max size of array part is 2^MAXBITS
|
||||||
*/
|
*/
|
||||||
#if LUA_BITSINT > 26
|
#if LUA_BITSINT > 26
|
||||||
#define MAXBITS 24
|
#define MAXBITS 26
|
||||||
#else
|
#else
|
||||||
#define MAXBITS (LUA_BITSINT-2)
|
#define MAXBITS (LUA_BITSINT-2)
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue