提交 beb74c14 编写于 作者: Y Yueh-Hsuan Chiang

Fix travis-build error

Summary:
Fix travis-build error
上级 a486352e
......@@ -11,8 +11,12 @@ namespace rocksdb {
namespace {
double Log2(double n) {
inline double Log2(double n) {
#ifndef OS_ANDROID
return log2(n);
#else
return log(n) / log(2);
#endif
}
// For now, always use 1-0 as level bytes multiplier.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册