diff options
Diffstat (limited to 'vec_avx_double4.h')
-rw-r--r-- | vec_avx_double4.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vec_avx_double4.h b/vec_avx_double4.h index e4699d8..6632c71 100644 --- a/vec_avx_double4.h +++ b/vec_avx_double4.h @@ -105,7 +105,7 @@ namespace vecmathlib { bool any() const { // return (*this)[0] || (*this)[1] || (*this)[2] || (*this)[3]; - return ! _mm256_testz_pd(v, v); + return ! bool(_mm256_testz_pd(v, v)); } |