diff options
author | Jack Lloyd <[email protected]> | 2019-03-13 10:21:34 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-03-13 10:21:34 -0400 |
commit | 6bed277fafa59ed03868a00e811c1ea203a4e177 (patch) | |
tree | ef44168a0eb818272a768d3c1e5642bfacdb3b35 | |
parent | 7e98b8bb928c40cf773d1834acbb30725cf22657 (diff) |
Avoid a warning when building in single file amalgamation mode
-rw-r--r-- | src/lib/utils/simd/simd_avx2/simd_avx2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/utils/simd/simd_avx2/simd_avx2.h b/src/lib/utils/simd/simd_avx2/simd_avx2.h index 3f8c0b912..91fce86d6 100644 --- a/src/lib/utils/simd/simd_avx2/simd_avx2.h +++ b/src/lib/utils/simd/simd_avx2/simd_avx2.h @@ -239,7 +239,7 @@ class SIMD_8x32 final _mm256_zeroall(); } - __m256i handle() const { return m_avx2; } + __m256i BOTAN_FUNC_ISA("avx2") handle() const { return m_avx2; } private: |