From 2836de090bff8d03aaf7efa30de4b1a904ee4591 Mon Sep 17 00:00:00 2001 From: CPunch Date: Thu, 25 May 2023 18:34:39 -0500 Subject: [PATCH] removed stale COBJ_STREAM usage --- src/cobj.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/cobj.h b/src/cobj.h index 86152ed..8cb70e7 100644 --- a/src/cobj.h +++ b/src/cobj.h @@ -8,7 +8,6 @@ typedef enum CObjType COBJ_STRING, COBJ_OBJECT, COBJ_TABLE, - COBJ_STREAM, COBJ_FUNCTION, COBJ_CFUNCTION, // internal use @@ -123,7 +122,6 @@ struct CObjUpval #define IS_STRING(x) isObjType(x, COBJ_STRING) #define IS_OBJECT(x) isObjType(x, COBJ_OBJECT) -#define IS_STREAM(x) isObjType(x, COBJ_STREAM) #define IS_TABLE(x) isObjType(x, COBJ_TABLE) #define IS_FUNCTION(x) isObjType(x, COBJ_FUNCTION) #define IS_CFUNCTION(x) isObjType(x, COBJ_CFUNCTION)