fixed empty_value index

This commit is contained in:
joaquintides
2022-10-10 11:13:32 +02:00
parent 889a81f034
commit a4c38c02c8

View File

@ -841,11 +841,11 @@ class
__declspec(empty_bases) /* activate EBO with multiple inheritance */
#endif
table:empty_value<Hash,0>,empty_value<Pred,1>,empty_value<Allocator,1>
table:empty_value<Hash,0>,empty_value<Pred,1>,empty_value<Allocator,2>
{
using hash_base=empty_value<Hash,0>;
using pred_base=empty_value<Pred,1>;
using allocator_base=empty_value<Allocator,1>;
using allocator_base=empty_value<Allocator,2>;
using type_policy=TypePolicy;
using group_type=group15;
static constexpr auto N=group_type::N;