diff options
Diffstat (limited to 'vec_avx_float8.h')
-rw-r--r-- | vec_avx_float8.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vec_avx_float8.h b/vec_avx_float8.h index ea02051..3ff6197 100644 --- a/vec_avx_float8.h +++ b/vec_avx_float8.h @@ -113,7 +113,7 @@ namespace vecmathlib { // return // (*this)[0] || (*this)[1] || (*this)[2] || (*this)[3] || // (*this)[4] || (*this)[5] || (*this)[6] || (*this)[7]; - return ! _mm256_testz_ps(v, v); + return ! bool(_mm256_testz_ps(v, v)); } |