mirror of
https://github.com/redis/redis.git
synced 2026-04-21 03:01:35 -04:00
Remove unused function
This commit is contained in:
@@ -188,10 +188,6 @@ static int zslValueLteMax(double value, zrangespec *spec) {
|
||||
return spec->maxex ? (value < spec->max) : (value <= spec->max);
|
||||
}
|
||||
|
||||
static int zslValueInRange(double value, zrangespec *spec) {
|
||||
return zslValueGteMin(value,spec) && zslValueLteMax(value,spec);
|
||||
}
|
||||
|
||||
/* Returns if there is a part of the zset is in range. */
|
||||
int zslIsInRange(zskiplist *zsl, zrangespec *range) {
|
||||
zskiplistNode *x;
|
||||
|
||||
Reference in New Issue
Block a user