summaryrefslogtreecommitdiffstats
path: root/include/framework
diff options
context:
space:
mode:
Diffstat (limited to 'include/framework')
-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