removed explicit from array constructor

This commit is contained in:
Patrick 2024-07-28 23:34:22 +02:00
parent 0c51825033
commit e17dcb2442
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ namespace cc {
constexpr explicit const_vector(const value_type &value) noexcept;
constexpr const_vector(size_type count, const value_type &value) noexcept;
constexpr explicit const_vector(const value_type (&array)[N]) noexcept;
constexpr const_vector(const value_type (&array)[N]) noexcept;
template <std::size_t N2>
constexpr explicit const_vector(const value_type (&array)[N2]);