mirror of
https://github.com/fluencelabs/redis
synced 2025-03-17 16:10:50 +00:00
Remove unused function
This commit is contained in:
parent
e53ca04b50
commit
72690afdd2
@ -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