summaryrefslogtreecommitdiffstats
path: root/include/shard/ISAMTree.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/shard/ISAMTree.h')
-rw-r--r--include/shard/ISAMTree.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/shard/ISAMTree.h b/include/shard/ISAMTree.h
index f6b525f..6722aaf 100644
--- a/include/shard/ISAMTree.h
+++ b/include/shard/ISAMTree.h
@@ -121,7 +121,9 @@ public:
size_t get_memory_usage() const { return m_internal_node_cnt * NODE_SZ; }
- size_t get_aux_memory_usage() const { return (m_bf) ? m_bf->memory_usage() : 0; }
+ size_t get_aux_memory_usage() const {
+ return (m_bf) ? m_bf->memory_usage() : 0;
+ }
/* SortedShardInterface methods */
size_t get_lower_bound(const K &key) const {