]> git.saurik.com Git - redis.git/commitdiff
Compiler should decide on inlining
authorPieter Noordhuis <pcnoordhuis@gmail.com>
Thu, 13 Jan 2011 15:06:03 +0000 (16:06 +0100)
committerPieter Noordhuis <pcnoordhuis@gmail.com>
Tue, 8 Mar 2011 09:57:33 +0000 (10:57 +0100)
src/t_zset.c

index 01b1d0350d32bef95c7f2ccdde84122aafe0a22d..0e7d726bfb388ede5e17ae3a0d478c6317abdadf 100644 (file)
@@ -180,15 +180,15 @@ typedef struct {
     int minex, maxex; /* are min or max exclusive? */
 } zrangespec;
 
-static inline int zslValueInMinRange(double value, zrangespec *spec) {
+static int zslValueInMinRange(double value, zrangespec *spec) {
     return spec->minex ? (value > spec->min) : (value >= spec->min);
 }
 
-static inline int zslValueInMaxRange(double value, zrangespec *spec) {
+static int zslValueInMaxRange(double value, zrangespec *spec) {
     return spec->maxex ? (value < spec->max) : (value <= spec->max);
 }
 
-static inline int zslValueInRange(double value, zrangespec *spec) {
+static int zslValueInRange(double value, zrangespec *spec) {
     return zslValueInMinRange(value,spec) && zslValueInMaxRange(value,spec);
 }