From eeab473fc8fdce39c3a0a495a6a790d7906c7bdc Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 12 Jun 2002 11:56:22 -0300 Subject: new fallback __le (less equal), for partial order --- lobject.h | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index 76855319..e818029e 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 1.132 2002/05/15 18:57:44 roberto Exp roberto $ +** $Id: lobject.h,v 1.133 2002/05/16 18:39:46 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -230,14 +230,6 @@ typedef struct Table { #define sizearray(t) ((t)->sizearray) -/* -** masks for comparison results -*/ -#define CMP_EQ 1 -#define CMP_LT 2 -#define CMP_GT 4 -#define CMP_N 8 /* not comparable values (e.g. NaN) */ - extern const TObject luaO_nilobject; -- cgit v1.2.3-55-g6feb