Skip to content

Commit 64fdedc

Browse files
committed
fix ilformed constructor
1 parent 3ec2600 commit 64fdedc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/beman/inplace_vector/inplace_vector.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ using inplace_vector_internal_size_type =
6262
template <typename T, std::size_t Capacity>
6363
struct inplace_vector_type_based_storage {
6464
using array_type = If<!std::is_const_v<T>, std::array<T, Capacity>,
65-
const std::array<std::remove_const_t<T>, Capacity>>;
65+
std::array<std::remove_const_t<T>, Capacity>>;
6666
array_type elems;
6767

6868
constexpr T *begin() { return elems.data(); }

0 commit comments

Comments
 (0)