mirror of https://github.com/facebook/rocksdb.git
parent
a486352e07
commit
beb74c14ca
|
@ -11,8 +11,12 @@ namespace rocksdb {
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
double Log2(double n) {
|
inline double Log2(double n) {
|
||||||
|
#ifndef OS_ANDROID
|
||||||
|
return log2(n);
|
||||||
|
#else
|
||||||
return log(n) / log(2);
|
return log(n) / log(2);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
// For now, always use 1-0 as level bytes multiplier.
|
// For now, always use 1-0 as level bytes multiplier.
|
||||||
|
|
Loading…
Reference in New Issue