removed explicit from array constructor
This commit is contained in:
parent
0c51825033
commit
e17dcb2442
|
|
@ -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]);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue