diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2006-03-21 16:28:03 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2006-03-21 16:28:03 -0300 |
commit | e1dda047b24600e67796279337db4be1d01cb673 (patch) | |
tree | 5cc76b91eab221659ea85223a1ff0984fa6b57a8 /lcode.h | |
parent | 2c8206d448fe05b94d3841e9e2472e78e6aadc13 (diff) | |
download | lua-e1dda047b24600e67796279337db4be1d01cb673.tar.gz lua-e1dda047b24600e67796279337db4be1d01cb673.tar.bz2 lua-e1dda047b24600e67796279337db4be1d01cb673.zip |
unused macro
Diffstat (limited to 'lcode.h')
-rw-r--r-- | lcode.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lcode.h,v 1.46 2005/10/03 14:02:40 roberto Exp roberto $ | 2 | ** $Id: lcode.h,v 1.47 2005/11/08 19:44:31 roberto Exp roberto $ |
3 | ** Code generator for Lua | 3 | ** Code generator for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -32,7 +32,6 @@ typedef enum BinOpr { | |||
32 | OPR_NOBINOPR | 32 | OPR_NOBINOPR |
33 | } BinOpr; | 33 | } BinOpr; |
34 | 34 | ||
35 | #define binopistest(op) ((op) >= OPR_NE) | ||
36 | 35 | ||
37 | typedef enum UnOpr { OPR_MINUS, OPR_NOT, OPR_LEN, OPR_NOUNOPR } UnOpr; | 36 | typedef enum UnOpr { OPR_MINUS, OPR_NOT, OPR_LEN, OPR_NOUNOPR } UnOpr; |
38 | 37 | ||