From 8eb900731da945d276f723534af09592213ee582 Mon Sep 17 00:00:00 2001 From: Jack Lloyd Date: Mon, 10 Sep 2018 19:19:19 -0400 Subject: Remove support for Visual C++ 2013 Closes GH #1557 --- src/lib/utils/simd/simd_32.h | 2 -- src/lib/utils/simd/simd_avx2/simd_avx2.h | 2 -- 2 files changed, 4 deletions(-) (limited to 'src/lib/utils/simd') 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() { -- cgit v1.2.3