mirror of
https://github.com/fluencelabs/redis
synced 2025-05-25 08:31:18 +00:00
Remove unused function
This commit is contained in:
parent
99cec798bb
commit
3e518093b6
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user