diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-05-09 14:37:32 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-05-09 14:37:48 -0400 |
| commit | 64fd53cea864a26c9cd4b34646a787c1049587e6 (patch) | |
| tree | 76968478283722f47e4e26a322da52a482885d15 /include/framework/MutableBuffer.h | |
| parent | e983f209cd6bb6d072d989df44a0d9f313b11ee6 (diff) | |
| download | dynamic-extension-64fd53cea864a26c9cd4b34646a787c1049587e6.tar.gz | |
MutableBuffer tests and bugfixes
Diffstat (limited to 'include/framework/MutableBuffer.h')
| -rw-r--r-- | include/framework/MutableBuffer.h | 2 |
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 |