X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/08a4f12e76c0edd4cdaadf4b4d1b39e1c57ff331..b16e423430465013c14af1550f29e7c25c3a433c:/src/rdb.h 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);