lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> in lvm.c:
> 
> #if !defined(LUA_USE_JUMPTABLE)
> #define LUA_USE_JUMPTABLE	defined(__GNUC__)
> #endif
> 
> [...]
> 
> #if LUA_USE_JUMPTABLE
> 
> The above results in undefined behavior. Instead use:
> 
> [...]

Sure. Thanks,

-- Roberto