commit 0470e6ff9dfa9cfa15e4862dcaf032f11355a931
parent a6c3055283c43a7700294ce8fe9898fb5eab69ac
Author: [email protected] <[email protected]>
Date: Mon, 5 Sep 2016 11:03:34 +0300
Remove constructor vec(array_ref)
Diffstat:
1 file changed, 0 insertions(+), 8 deletions(-)
diff --git a/include/kfr/base/vec.hpp b/include/kfr/base/vec.hpp
@@ -563,14 +563,6 @@ struct vec : vec_t<T, N>, operators::empty
constexpr CMT_INLINE vec() noexcept {}
constexpr CMT_INLINE vec(simd_t value) noexcept : v(value) {}
- constexpr CMT_INLINE vec(const array_ref<T>& value) noexcept
- : v(*internal_read_write::read<N, false>(value.data()))
- {
- }
- constexpr CMT_INLINE vec(const array_ref<const T>& value) noexcept
- : v(*internal_read_write::read<N, false>(value.data()))
- {
- }
template <typename U,
KFR_ENABLE_IF(std::is_convertible<U, T>::value&& compound_type_traits<T>::width > 1)>
constexpr CMT_INLINE vec(const U& value) noexcept