summaryrefslogtreecommitdiffstats
path: root/include/framework/MutableBuffer.h
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2023-05-09 14:37:32 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2023-05-09 14:37:48 -0400
commit64fd53cea864a26c9cd4b34646a787c1049587e6 (patch)
tree76968478283722f47e4e26a322da52a482885d15 /include/framework/MutableBuffer.h
parente983f209cd6bb6d072d989df44a0d9f313b11ee6 (diff)
downloaddynamic-extension-64fd53cea864a26c9cd4b34646a787c1049587e6.tar.gz
MutableBuffer tests and bugfixes
Diffstat (limited to 'include/framework/MutableBuffer.h')
-rw-r--r--include/framework/MutableBuffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/framework/MutableBuffer.h b/include/framework/MutableBuffer.h
index 567b1d7..b3acfee 100644
--- a/include/framework/MutableBuffer.h
+++ b/include/framework/MutableBuffer.h
@@ -95,7 +95,7 @@ public:
Record<K, V, W>* sorted_output() {
TIMER_INIT();
TIMER_START();
- std::sort(m_data, m_data + m_reccnt.load(), memtable_record_cmp);
+ std::sort(m_data, m_data + m_reccnt.load(), memtable_record_cmp<K,V,W>);
TIMER_STOP();
#ifdef INSTRUMENT_MERGING