mirror of
https://github.com/fluencelabs/redis
synced 2025-04-01 23:31:03 +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);
|
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. */
|
/* Returns if there is a part of the zset is in range. */
|
||||||
int zslIsInRange(zskiplist *zsl, zrangespec *range) {
|
int zslIsInRange(zskiplist *zsl, zrangespec *range) {
|
||||||
zskiplistNode *x;
|
zskiplistNode *x;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user