From e17dcb244248224b830079f442049b4e4219b98c Mon Sep 17 00:00:00 2001 From: Patrick Date: Sun, 28 Jul 2024 23:34:22 +0200 Subject: [PATCH] removed explicit from array constructor --- include/const_vector.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]);