From: antirez Date: Tue, 30 Oct 2012 18:10:46 +0000 (+0100) Subject: No longer used macro rdbIsOpcode() removed. X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/5bf0997ff879bf8668939d6b9e8a6eb877750c09?ds=inline No longer used macro rdbIsOpcode() removed. --- diff --git a/src/rdb.h b/src/rdb.h index 37f44745..1c07994f 100644 --- a/src/rdb.h +++ b/src/rdb.h @@ -62,9 +62,6 @@ #define REDIS_RDB_OPCODE_SELECTDB 254 #define REDIS_RDB_OPCODE_EOF 255 -/* Test if a type is an opcode. */ -#define rdbIsOpcode(t) (t >= 253 && t <= 255) - int rdbSaveType(rio *rdb, unsigned char type); int rdbLoadType(rio *rdb); int rdbSaveTime(rio *rdb, time_t t);