diff --git a/src/common/classes/tree.h b/src/common/classes/tree.h index 5fef3ed9e1..8ff7d4ef2c 100644 --- a/src/common/classes/tree.h +++ b/src/common/classes/tree.h @@ -108,8 +108,8 @@ template > class BePlusTree { -static const int LeafCount = LEAF_PAGE_SIZE / sizeof(Value); -static const int NodeCount = NODE_PAGE_SIZE / sizeof(void*); + static const int LeafCount = LEAF_PAGE_SIZE / sizeof(Value); + static const int NodeCount = NODE_PAGE_SIZE / sizeof(void*); public: explicit BePlusTree(Allocator *_pool) : pool(_pool), level(0), root(NULL), defaultAccessor(this)