aboutsummaryrefslogtreecommitdiff
path: root/libbutl/small-list.mxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-10-09 11:43:17 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-10-09 11:43:17 +0200
commit5ea81f5bc791243ac77e82276a8a5a3faa3e155f (patch)
tree52473ecb468ec03e0468c00a50309fc3c03b306e /libbutl/small-list.mxx
parent741aa78d9df685dc7755e7d3cd679ca7a24b8014 (diff)
Define small_size constant in small containers
Diffstat (limited to 'libbutl/small-list.mxx')
-rw-r--r--libbutl/small-list.mxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/libbutl/small-list.mxx b/libbutl/small-list.mxx
index 40a583d..7e91dc5 100644
--- a/libbutl/small-list.mxx
+++ b/libbutl/small-list.mxx
@@ -68,6 +68,8 @@ LIBBUTL_MODEXPORT namespace butl
static_assert (N == 1, "only small_list or 1 currently supported");
public:
+ static constexpr const std::size_t small_size = N;
+
using buffer_type = small_list_buffer<T, N>;
using allocator_type = small_allocator<T, N, buffer_type>;
using base_type = std::list<T, allocator_type>;