diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-10-30 17:15:05 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-10-30 17:15:05 -0400 |
| commit | d2279e1b96d352a0af1d425dcaaf93e8a26a8d52 (patch) | |
| tree | 4e8df98339ff5578deb8f8be46b9f6c3cc34cef4 /include/shard/WIRS.h | |
| parent | 8ce1cb0eef7d5631f0f7788804845ddc8296ac6f (diff) | |
| download | dynamic-extension-d2279e1b96d352a0af1d425dcaaf93e8a26a8d52.tar.gz | |
General Comment + Consistency updates
Diffstat (limited to 'include/shard/WIRS.h')
| -rw-r--r-- | include/shard/WIRS.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/shard/WIRS.h b/include/shard/WIRS.h index 83573c8..bf29325 100644 --- a/include/shard/WIRS.h +++ b/include/shard/WIRS.h @@ -2,7 +2,7 @@ * include/shard/WIRS.h * * Copyright (C) 2023 Dong Xie <dongx@psu.edu> - * Douglas Rumbaugh <drumbaugh@psu.edu> + * Douglas B. Rumbaugh <drumbaugh@psu.edu> * * All rights reserved. Published under the Modified BSD License. * @@ -260,6 +260,10 @@ public: return m_alloc_size + m_node_cnt * sizeof(wirs_node<Wrapped<R>>); } + size_t get_aux_memory_usage() { + return 0; + } + private: size_t get_lower_bound(const K& key) const { |