[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Lua 5.1 beta in AIX using cc 4.4
- From: Roberto Ierusalimschy <roberto@...>
- Date: Tue, 29 Nov 2005 11:42:10 -0200
Can you try the following alternatives?
#define NUM_OPCODES (OP_VARARG+1)
#define NUM_OPCODES (cast(int, OP_VARARG) + 1)
-- Roberto