From 33c49f7fa03cf7e3bf7bb3aa697dc567d910c661 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 22 Aug 2013 12:21:48 -0300 Subject: some details over new implementation of string table --- lstate.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index 1877b5d9..2c89aad6 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 2.86 2013/08/21 19:21:16 roberto Exp roberto $ +** $Id: lstate.h,v 2.87 2013/08/21 20:09:51 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -59,9 +59,9 @@ struct lua_longjmp; /* defined in ldo.c */ typedef struct stringtable { TString **hash; - unsigned int nuse; /* number of elements */ - unsigned int empty; /* number of available empty slots */ - unsigned int size; + int nuse; /* number of elements */ + int empty; /* number of available empty slots */ + int size; } stringtable; -- cgit v1.2.3-55-g6feb