aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils/simd
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-09-10 19:19:19 -0400
committerJack Lloyd <[email protected]>2018-10-01 12:53:53 -0400
commit8eb900731da945d276f723534af09592213ee582 (patch)
treed080c6fd2ca760796b522d21288b0b4bfc0b6e65 /src/lib/utils/simd
parenta792728e8941b62761052f5e0d288ba13a016c77 (diff)
Remove support for Visual C++ 2013
Closes GH #1557
Diffstat (limited to 'src/lib/utils/simd')
-rw-r--r--src/lib/utils/simd/simd_32.h2
-rw-r--r--src/lib/utils/simd/simd_avx2/simd_avx2.h2
2 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/utils/simd/simd_32.h b/src/lib/utils/simd/simd_32.h
index 20589939c..0198028ba 100644
--- a/src/lib/utils/simd/simd_32.h
+++ b/src/lib/utils/simd/simd_32.h
@@ -47,10 +47,8 @@ class SIMD_4x32 final
SIMD_4x32& operator=(const SIMD_4x32& other) = default;
SIMD_4x32(const SIMD_4x32& other) = default;
-#if !defined(BOTAN_BUILD_COMPILER_IS_MSVC_2013)
SIMD_4x32& operator=(SIMD_4x32&& other) = default;
SIMD_4x32(SIMD_4x32&& other) = default;
-#endif
/**
* Zero initialize SIMD register with 4 32-bit elements
diff --git a/src/lib/utils/simd/simd_avx2/simd_avx2.h b/src/lib/utils/simd/simd_avx2/simd_avx2.h
index 19f930854..3161af962 100644
--- a/src/lib/utils/simd/simd_avx2/simd_avx2.h
+++ b/src/lib/utils/simd/simd_avx2/simd_avx2.h
@@ -19,10 +19,8 @@ class SIMD_8x32 final
SIMD_8x32& operator=(const SIMD_8x32& other) = default;
SIMD_8x32(const SIMD_8x32& other) = default;
-#if !defined(BOTAN_BUILD_COMPILER_IS_MSVC_2013)
SIMD_8x32& operator=(SIMD_8x32&& other) = default;
SIMD_8x32(SIMD_8x32&& other) = default;
-#endif
SIMD_8x32()
{