提交 35a8873a 编写于 作者: I Igor Canadi

Define kInlineSize in .cc file instead of header

上级 eea73226
......@@ -14,6 +14,7 @@
namespace rocksdb {
const size_t Arena::kInlineSize = 2048;
const size_t Arena::kMinBlockSize = 4096;
const size_t Arena::kMaxBlockSize = 2 << 30;
static const int kAlignUnit = sizeof(void*);
......
......@@ -28,7 +28,7 @@ class Arena {
Arena(const Arena&) = delete;
void operator=(const Arena&) = delete;
static const size_t kInlineSize = 2048;
static const size_t kInlineSize;
static const size_t kMinBlockSize;
static const size_t kMaxBlockSize;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册