mutation_partition: row: Add empty()

This commit is contained in:
Tomasz Grabiec
2016-03-18 12:44:28 +01:00
parent d5e66a5b0d
commit 9fc7f8a5ed
Notes: Avi Kivity 2016-03-26 22:06:40 +03:00
backport: 1.0

View File

@@ -119,6 +119,7 @@ public:
row(row&& other);
row& operator=(row&& other);
size_t size() const { return _size; }
bool empty() const { return _size == 0; }
void reserve(column_id);