diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 2.124 2017/06/27 11:35:31 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 2.125 2017/06/29 15:06:44 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 | */ |
@@ -311,6 +311,10 @@ typedef struct TValue { | |||
311 | 311 | ||
312 | typedef union StackValue { | 312 | typedef union StackValue { |
313 | TValue val; | 313 | TValue val; |
314 | struct { | ||
315 | TValuefields; | ||
316 | unsigned short previous; /* difference to previous 'func' */ | ||
317 | } stkci; | ||
314 | } StackValue; | 318 | } StackValue; |
315 | 319 | ||
316 | 320 | ||