summaryrefslogtreecommitdiffstats
path: root/include/framework/structure/BufferView.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/framework/structure/BufferView.h')
-rw-r--r--include/framework/structure/BufferView.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/framework/structure/BufferView.h b/include/framework/structure/BufferView.h
index 1efc1ac..14abedc 100644
--- a/include/framework/structure/BufferView.h
+++ b/include/framework/structure/BufferView.h
@@ -35,7 +35,7 @@ public:
BufferView(std::vector<Buffer*> buffers)
: m_buffers(buffers)
- , m_cutoff(buffers[buffers->size()-1]->get_record_count())
+ , m_cutoff(buffers[buffers.size()-1]->get_record_count())
{}
~BufferView() = default;
@@ -102,7 +102,7 @@ public:
return m_buffers[0]->get_tombstone_capacity();
}
- std::vector<void *> get_buffer_states(void *parms) {
+ std::vector<void *> get_query_states(void *parms) {
std::vector<void *> states;
for (auto buf : m_buffers) {