We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ec2600 commit 64fdedcCopy full SHA for 64fdedc
include/beman/inplace_vector/inplace_vector.hpp
@@ -62,7 +62,7 @@ using inplace_vector_internal_size_type =
62
template <typename T, std::size_t Capacity>
63
struct inplace_vector_type_based_storage {
64
using array_type = If<!std::is_const_v<T>, std::array<T, Capacity>,
65
- const std::array<std::remove_const_t<T>, Capacity>>;
+ std::array<std::remove_const_t<T>, Capacity>>;
66
array_type elems;
67
68
constexpr T *begin() { return elems.data(); }
0 commit comments