diff --git a/include/const_vector.hpp b/include/const_vector.hpp index 7138cad..07fb553 100644 --- a/include/const_vector.hpp +++ b/include/const_vector.hpp @@ -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 constexpr explicit const_vector(const value_type (&array)[N2]);