Skip to content

Commit f78c251

Browse files
Fix minor warning
1 parent e0a1058 commit f78c251

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: include/xsimd/arch/xsimd_ssse3.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ namespace xsimd
7878
XSIMD_INLINE batch<T, A> extract_pair(batch<T, A> const& self, batch<T, A> const& other, std::size_t i, requires_arch<ssse3>) noexcept
7979
{
8080
constexpr std::size_t size = batch<T, A>::size;
81-
assert(0 <= i && i < size && "index in bounds");
81+
assert(i < size && "index in bounds");
8282
return detail::extract_pair(self, other, i, ::xsimd::detail::make_index_sequence<size>());
8383
}
8484

0 commit comments

Comments
 (0)