lua-users home
lua-l archive

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


At 11:42 29/11/2005, Roberto Ierusalimschy wrote:
Can you try the following alternatives?

  #define NUM_OPCODES     (OP_VARARG+1)

  #define NUM_OPCODES     (cast(int, OP_VARARG) + 1)

  Both forms work. Just to make sure I return to:

#define NUM_OPCODES     (cast(int, OP_VARARG+1))

  and the error pop up again.

Best,
scuri