Skip to content

Commit c0080cb

Browse files
WIP
1 parent 62b9257 commit c0080cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/xsimd/arch/xsimd_altivec.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ namespace xsimd
136136
{
137137
return vec_nand(self.data, other.data);
138138
}
139-
template <class A, class T, class = typename std::enable_if<std::is_integral<T>::value, void>::type>
139+
template <class A, class T, class = typename std::enable_if<std::is_scalar<T>::value, void>::type>
140140
XSIMD_INLINE batch_bool<T, A> bitwise_andnot(batch_bool<T, A> const& self, batch_bool<T, A> const& other, requires_arch<altivec>) noexcept
141141
{
142142
return vec_nand(self.data, other.data);

0 commit comments

Comments
 (0)