summaryrefslogtreecommitdiffstats
path: root/include/framework/InternalLevel.h
diff options
context:
space:
mode:
authorDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2023-06-09 11:01:55 -0400
committerDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2023-06-09 11:01:55 -0400
commitcd7f2c7bee1c44e9e11ab75d6674ba5d05c6ba84 (patch)
tree2191561d499bc89b83af9eb348b5daab62aa76f2 /include/framework/InternalLevel.h
parent311585fda77de9e41c7b44a9b75b227163e89e5e (diff)
downloaddynamic-extension-cd7f2c7bee1c44e9e11ab75d6674ba5d05c6ba84.tar.gz
Build changes and interface cleanup
Renamed the get_record_cnt() functions to get_record_count() for consistency, dropped references to SSIs, and added openmp build flags for PGM related targets. Also adjusted dynamic_extension_tests.inc to fail when an erase fails during the static structure testing as part of debugging a delete cancellation problem under leveling.
Diffstat (limited to 'include/framework/InternalLevel.h')
-rw-r--r--include/framework/InternalLevel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/framework/InternalLevel.h b/include/framework/InternalLevel.h
index ac013c0..8554392 100644
--- a/include/framework/InternalLevel.h
+++ b/include/framework/InternalLevel.h
@@ -140,7 +140,7 @@ public:
return m_shard_cnt;
}
- size_t get_record_cnt() {
+ size_t get_record_count() {
size_t cnt = 0;
for (size_t i=0; i<m_shard_cnt; i++) {
cnt += m_shards[i]->get_record_count();