From 64fd53cea864a26c9cd4b34646a787c1049587e6 Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Tue, 9 May 2023 14:37:32 -0400 Subject: MutableBuffer tests and bugfixes --- include/framework/MutableBuffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/framework/MutableBuffer.h') 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* 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); TIMER_STOP(); #ifdef INSTRUMENT_MERGING -- cgit v1.2.3