mirror of
https://github.com/fluencelabs/redis
synced 2025-03-19 09:00:51 +00:00
fixed compilation error when using clang as reported by michael-grunder
This commit is contained in:
parent
97bde9f623
commit
15d7e61701
@ -386,6 +386,7 @@ static char *invalid_hll_err = "-INVALIDOBJ Corrupted HLL object detected\r\n";
|
|||||||
*(p) = (_l>>8) | HLL_SPARSE_XZERO_BIT; \
|
*(p) = (_l>>8) | HLL_SPARSE_XZERO_BIT; \
|
||||||
*((p)+1) = (_l&0xff); \
|
*((p)+1) = (_l&0xff); \
|
||||||
} while(0)
|
} while(0)
|
||||||
|
#define HLL_ALPHA_INF 0.721347520444481703680 /* constant for 0.5/ln(2) */
|
||||||
|
|
||||||
/* ========================= HyperLogLog algorithm ========================= */
|
/* ========================= HyperLogLog algorithm ========================= */
|
||||||
|
|
||||||
@ -1012,7 +1013,6 @@ uint64_t hllCount(struct hllhdr *hdr, int *invalid) {
|
|||||||
double m = HLL_REGISTERS;
|
double m = HLL_REGISTERS;
|
||||||
double E;
|
double E;
|
||||||
int j;
|
int j;
|
||||||
static double alphaInf = 0.5 / log(2.);
|
|
||||||
int regHisto[HLL_Q+2] = {0};
|
int regHisto[HLL_Q+2] = {0};
|
||||||
|
|
||||||
/* Compute register histogram */
|
/* Compute register histogram */
|
||||||
@ -1036,7 +1036,7 @@ uint64_t hllCount(struct hllhdr *hdr, int *invalid) {
|
|||||||
z *= 0.5;
|
z *= 0.5;
|
||||||
}
|
}
|
||||||
z += m * hllSigma(regHisto[0]/(double)m);
|
z += m * hllSigma(regHisto[0]/(double)m);
|
||||||
E = llroundl(alphaInf*m*m/z);
|
E = llroundl(HLL_ALPHA_INF*m*m/z);
|
||||||
|
|
||||||
return (uint64_t) E;
|
return (uint64_t) E;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user