Skip to content

Commit

Permalink
fix compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Smith committed Feb 7, 2024
1 parent cbecf43 commit d291b9e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ namespace simd

using Vec = typename details::VecNt<abi_type::N, T>::Vector_class; // e.g., Vec4i

static constexpr std::integral_constant<details::size_type, Vec::size()> size;
static_assert(size() == Vec::size());
static constexpr std::integral_constant<details::size_type, Vec::size()> size = -1;
//static_assert(size() == Vec::size());

constexpr basic_simd() noexcept = default;

Expand Down

0 comments on commit d291b9e

Please sign in to comment.